phpstan / phpstan-nette
Nette Framework class reflection extension for PHPStan
Installs: 803 380
Dependents: 422
Suggesters: 3
Security: 0
Stars: 58
Watchers: 10
Forks: 20
Open Issues: 7
Type:phpstan-extension
Requires
- php: ^7.1 || ^8.0
- phpstan/phpstan: ^0.12.60
Requires (Dev)
- nette/forms: ^3.0
- nette/utils: ^2.3.0 || ^3.0.0
- phing/phing: ^2.16.3
- php-parallel-lint/php-parallel-lint: ^1.2
- phpstan/phpstan-php-parser: ^0.12.2
- phpstan/phpstan-phpunit: ^0.12.16
- phpstan/phpstan-strict-rules: ^0.12.5
- phpunit/phpunit: ^7.5.20
Conflicts
- nette/application: <2.3.0
- nette/component-model: <2.3.0
- nette/di: <2.3.0
- nette/forms: <2.3.0
- nette/http: <2.3.0
- nette/utils: <2.3.0
This package is auto-updated.
Last update: 2021-01-05 10:05:27 UTC
README
This extension provides following features:
Nette\ComponentModel\Container::getComponent()
knows type of the component because it reads the return type oncreateComponent*
(this works best in presenters and controls)Nette\DI\Container::getByType
andcreateInstance
return type based on first parameter (Foo::class
).Nette\Forms\Container::getValues
return type based on$asArray
parameter.Nette\ComponentModel\Component::lookup
return type based on$throw
parameter.Nette\Application\UI\Component::getPresenter
return type based on$throw
parameter.- Dynamic methods of Nette\Utils\Html
- Magic Nette\Object and Nette\SmartObject properties
- Event listeners through the
on*
properties - Defines early terminating method calls for Presenter methods to prevent
Undefined variable
errors
It also contains these framework-specific rules (can be enabled separately):
- Do not extend Nette\Object, use Nette\SmartObject trait instead
- Rethrow exceptions that are always meant to be rethrown (like
AbortException
)
Installation
To use this extension, require it in Composer:
composer require --dev phpstan/phpstan-nette
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/phpstan/phpstan-nette/extension.neon
To perform framework-specific checks, include also this file:
- vendor/phpstan/phpstan-nette/rules.neon