Caleb White

Results 416 comments of Caleb White

@dantleech, I think I know why The modules are being symlinked to the vendor directory, so when phpactor gets the file path from the class name it can do this...

It's also skipped when `is_null()` or `!== null` is used---seems to happen only on `=== null`: https://getrector.com/demo/7dced2cb-7f16-4aa4-9b1e-cb562cd058c7

This is likely due to the default config from Laravel on L11+, try adding this to your config: ```php 'providers' => [ 'users' => null, // ... ```

@ondrejmirtes, I've reproduced the bug here: https://github.com/calebdw/larastan/pull/31 If I have time then I'll try to reproduce in PHPStan's test suite. > In this case I suspect that App\PostBuilder isn't a...

@mattvb91, here's the PR that closes this https://github.com/phpstan/phpstan-src/pull/4290

Even if this "bug" is fixed by being able to parse the comments I would still want a rule to enforce that comments come before attributes (but that can be...

PHPDoc changes like this should be implemented in the framework It works on the value, but not so much on the key: https://phpstan.org/r/119e1f03-a897-49f5-9390-f100376937cd

> Not true actually. Doing it through Larastan actually benefits more users, since we can apply it to more versions and not just the latest. Sure, but ultimately it still...

It might be a phpstan bug having to do with the union of two benevolent unions https://github.com/phpstan/phpstan/issues/13192

No worries, just been busy with personal life, I'll try to get to the comments soon