9brada6
9brada6
```php /** * @return int */ function return_int() { $rating = get_a_mixed(); return $rating; } /** * @return mixed */ function get_a_mixed() { return 'a_string'; } ``` This code snippet...
Hi, I'm editing a site where user can select and preview predefined templates. The page works by previewing the template, not in an iframe, but in the page itself, via...
## Bug Description Unseting a global variable should report an error. ## Minimal Code Snippet ```php global $wp_post_types; $wp_post_types['post'] = $a_variable // Reports an error, nice. unset( $wp_post_types['post'] ); //...
A nice improvement I find is to default the option "phan.analyzedProjectDirectory" to the main workspace root folder(or in case of a workspace with multi-folders environment search the first workspace folder...
As described in the last comment #79 , I dunno if you saw it...
Added the feature to auto-detect workspace directories and set it as default analyzedProjectDirectory. analyzedProjectDirectory is no longer needed to be explicit set. ### Other Improvement: If no folder project for...
Hi... my project takes about 10-15 seconds to be parsed by phan... It will be very nice if there was an indicator in status bar that will say when the...