Releases: dereuromark/cakephp-ide-helper
2.4.0
2.3.0
2.2.4
2.2.3
2.2.2
Improvements
Full Changelog: 2.2.1...2.2.2
1.20.0
2.2.1
Fixes
- Support more complex array shape annotations as well as union types within them for
@var
2.2.0
Improvements
codeCompletionReturnType
config added:
Allow configuration of return type vs docblock for controller/component events.
Use true
to not allow void here for any such event, and always hardcode Response|null
as return type (recommended).
Use false
to only document types and here allow for void
in general.
2.1.0
Improvements
Added generics for table associations as opt-in.
You can enable this by setting 'IdeHelper.assocsAsGenerics'
config to true
.
e.g. WheelsTable:
- * @property \TestApp\Model\Table\CarsTable&\Cake\ORM\Association\BelongsTo $Cars
+ * @property \Cake\ORM\Association\BelongsTo<\TestApp\Model\Table\CarsTable> $Cars
This is designed to work with CakePHP 5.0.3+ and allows PHPStan to better see those associations and their actual type.
The main idea here is that less inline annotations are needed for PHPStan/Psalm to detect those.
Inside Wheels table accessing Owner table methods through Cars:
$result = $this->Cars->Owner->someMethod();
Warning: This does not yet play well with most IDEs. The tradeoff seems to be that you lose IDE compatibility/autocomplete on the table methods here. So use with caution.
1.19.0
Improvements
- Backported addHelper() autocomplete for View from 5.x
Now CakePHP 4.4+