cakedc / cakephp-phpstan
CakePHP plugin extension for PHPStan.
Installs: 521 182
Dependents: 23
Suggesters: 0
Security: 0
Stars: 38
Watchers: 14
Forks: 6
Open Issues: 1
Type:phpstan-extension
pkg:composer/cakedc/cakephp-phpstan
Requires
- php: >=8.1.0
- cakephp/cakephp: ^5.0
- phpstan/phpstan: ^2.1.26
Requires (Dev)
- cakephp/cakephp-codesniffer: ^5.0
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpstan/phpstan-strict-rules: ^2.0
- phpunit/phpunit: ^10.5 || ^11.5 || ^12.1
- dev-4.next-cake5
- 4.1.0
- 4.0.0
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.1.0
- 2.0.1
- 2.0.0
- 1.0.2
- 1.0.1
- 1.0.0
- dev-feature/table-methods-throws
- dev-feature/disallow-debug-functions
- dev-type-factory
- dev-feature/typed-association-find-by
- dev-fix-reflection
- dev-3.next-cake5
- dev-2.next-cake4
- dev-issue/cakephp-rule-accept-set-classname
- dev-master
This package is auto-updated.
Last update: 2025-10-15 20:49:39 UTC
README
Provide services and rules for a better PHPStan analyze on CakePHP applications, includes services to resolve types (Table, Helpers, Behaviors, etc) and multiple rules.
Installation
To use this extension, require it through Composer:
composer require --dev cakedc/cakephp-phpstan
If you also install phpstan/extension-installer, then you're all set!
Manual installation
If you don't want to use phpstan/extension-installer
, include extension.neon
in your project's PHPStan config:
includes:
- vendor/cakedc/cakephp-phpstan/extension.neon
General class load|fetch extensions
Features included:
- Provide correct return type for
Cake\ORM\Locator\LocatorInterface::get()
- Provide correct return type for
Cake\Controller\Controller::loadComponent()
- Provide correct return type for
Cake\Controller\Controller::fetchTable()
- Provide correct return type for
Cake\Controller\Component::fetchTable()
- Provide correct return type for
Cake\Command\Command::fetchTable()
- Provide correct return type for
Cake\Mailer\Mailer::fetchTable()
- Provide correct return type for
Cake\View\Cell::fetchTable()
- Provide correct return type for
Cake\Console\ConsoleIo::helper()
Table class return type extensions
TableEntityDynamicReturnTypeExtension
- Provide correct return type for
Cake\ORM\Table::get
based on your table class name - Provide correct return type for
Cake\ORM\Table::newEntity
based on your table class name - Provide correct return type for
Cake\ORM\Table::newEntities
based on your table class name - Provide correct return type for
Cake\ORM\Table::newEmptyEntity
based on your table class name - Provide correct return type for
Cake\ORM\Table::findOrCreate
based on your table class name
Examples:
//Now PHPStan know that \App\Models\Table\NotesTable::get returns \App\Model\Entity\Note $note = $this->Notes->get(1); $note->note = 'My new note';//No error //Now PHPStan know that \App\Models\Table\NotesTable::newEntity returns \App\Model\Entity\Note $note = $this->Notes->newEntity($data); $note->note = 'My new note new entity';//No error //Now PHPStan know that \App\Models\Table\NotesTable::newEmptyEntity returns \App\Model\Entity\Note $note = $this->Notes->newEmptyEntity($data); $note->note = 'My new note new empty entity';//No error //Now PHPStan know that \App\Models\Table\NotesTable::findOrCreate returns \App\Model\Entity\Note $note = $this->Notes->findOrCreate($data); $note->note = 'My entity found or created';//No error //Now PHPStan know that \App\Models\Table\NotesTable::newEntities returns \App\Model\Entity\Note[] $notes = $this->Notes->newEntities($data); foreach ($notes as $note) { $note->note = 'My new note';//No error }
TableFirstArgIsTheReturnTypeExtension
- Provide correct return type for
Cake\ORM\Table::patchEntity
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::patchEntities
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::save
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::saveOrFail
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::saveMany
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::saveManyOrFail
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::deleteMany
based on the first argument passed - Provide correct return type for
Cake\ORM\Table::deleteManyOrFail
based on the first argument passed - Provide correct return type for
Cake\ORM\Locator\LocatorAwareTrait::fetchTable
based on the first argument passed - Provide correct return type for
Cake\Mailer\MailerAwareTrait::getMailer
based on the first argument passed
Examples:
//Now PHPStan know that \App\Models\Table\NotesTable::get returns \App\Model\Entity\Note $note = $this->Notes->get(1); $notes = $this->Notes->newEntities($data); //Since PHPStan knows the type of $note, these methods call use the same type as return type: $note = $this->Notes->patchEntity($note, $data); $text = $note->note;//No error. $note = $this->Notes->save($note); $text = $note->note;//No error. $note = $this->Notes->saveOrFail($note); $text = $note->note;//No error. //Since PHPStan knows the type of $notes, these methods call use the same type as return type: $notes = $this->Notes->patchEntities($notes); $notes = $this->Notes->saveMany($notes); $notes = $this->Notes->saveManyOrFail($notes); $notes = $this->Notes->deleteMany($notes); $notes = $this->Notes->deleteManyOrFail($notes);
Rules
All rules provided by this library are included in rules.neon and are enabled by default:
AddAssociationExistsTableClassRule
This rule check if the target association has a valid table class when calling to Table::belongsTo, Table::hasMany, Table::belongsToMany, Table::hasOne and AssociationCollection::load.
AddAssociationMatchOptionsTypesRule
This rule check if association options are valid option types based on what each class expects. This cover calls to Table::belongsTo, Table::hasMany, Table::belongsToMany, Table::hasOne and AssociationCollection::load.
AddBehaviorExistsClassRule
This rule check if the target behavior has a valid class when calling to Table::addBehavior and BehaviorRegistry::load.
DisallowDebugFuncCallRule
This rule disallow use of debug functions (dd, debug, debug_print_backtrace, debug_zval_dump, pr, print_r, stacktrace, var_dump and var_export
).
The use of these functions in shipped code is discouraged because they can leak sensitive information or clutter output.
DisallowDebugStaticCallRule
This rule disallow use of debug methods. The use of these methods in shipped code is discouraged because they can leak sensitive information or clutter output.
Methods covered:
- Cake\Error\Debugger::dump
- Cake\Error\Debugger::printVar
- DebugKit\DebugSql::sql
- DebugKit\DebugSql::sqld
DisallowEntityArrayAccessRule
This rule disallow array access to entity in favor of object notation, is easier to detect a wrong property and to refactor code.
GetMailerExistsClassRule
This rule check if the target mailer is a valid class when calling to Cake\Mailer\MailerAwareTrait::getMailer.
LoadComponentExistsClassRule
This rule check if the target component has a valid class when calling to Controller::loadComponent and ComponentRegistry::load.
OrmSelectQueryFindMatchOptionsTypesRule
This rule check if the options (args) passed to Table::find and SelectQuery are valid find options types.
TableGetMatchOptionsTypesRule
This rule check if the options (args) passed to Table::get are valid find options types.
ControllerMethodMustBeUsedRule
This rule enforces that controller methods like render()
and redirect()
must be used (returned or assigned) to prevent unreachable code. These methods should not be called in void context - use them with a return
statement or assign them to a variable to make the control flow explicit.
Examples:
// Bad - code after render() is unreachable public function myAction() { $this->render('edit'); $this->set('data', 'value'); // This will never execute } // Good - explicit return prevents confusion public function myAction() { return $this->render('edit'); } // Also good - assignment is valid public function myAction() { $response = $this->render('edit'); return $response; } // Bad - code after redirect() is unreachable public function myAction() { $this->redirect(['action' => 'index']); $this->Flash->success('Done'); // This will never execute } // Good - explicit return prevents confusion public function myAction() { return $this->redirect(['action' => 'index']); }
How to disable a rule
Each rule has a parameter in cakeDC 'namespace' to enable or disable, it is the same name of the rule with first letter in lowercase. For example to disable the rule AddAssociationExistsTableClassRule you should have
parameters:
cakeDC:
addAssociationExistsTableClassRule: false
PHPDoc Extensions
TableAssociationTypeNodeResolverExtension
Fix intersection association phpDoc to correct generic object type, ex:
Change \Cake\ORM\Association\BelongsTo&\App\Model\Table\UsersTable
to \Cake\ORM\Association\BelongsTo<\App\Model\Table\UsersTable>
Tips
To make your life easier make sure to have @mixin
and @method
annotations in your table classes.
The @mixin
annotation will help phpstan know you are using methods from behavior, and @method
annotations
will allow it to know the correct return types for methods like Table::get()
, Table::newEntity()
.
You can easily update annotations with the plugin IdeHelper.
Support
For bugs and feature requests, please use the issues section of this repository.
Commercial support is also available, contact us for more information.
Contributing
If you'd like to contribute new features, enhancements or bug fixes to the plugin, please read our Contribution Guidelines for detailed instructions.