Carlos A Sastre

Results 6 issues of Carlos A Sastre

Right now only classes defined by PSR-0 or PSR-4 are extracted from composer.json We should also extract the ones defined by 'files' ``` "autoload": { "files": [ "src/SomeClass.php", "src/functions.php" ],...

enhancement

**Enhancement description** It would be great to have the option of checking if a class has some dependency/inheritance/mixin/composition not only by itself but coming from a parent. **Suggested approach or...

enhancement
:computer: in progress

I want to automate the update of our Postman collection from our OAS file during the pipeline. However, every time that I run the script, the example data (id, texts,...

When the option `ignore_built_in_classes` is enabled, and there is a rule like: ``` return PHPat::rule() ->classes(Selector::namespace('App\Whatever')) ->shouldImplement() ->classes(Selector::classname(\JsonSerializable::class)); ``` PHPat reports: > App\Whatever\MyClass should implement JsonSerializable --- Built-in classes should...

bug