PHPStan extension for Zend Framework
This extension provides following features:
- Provide correct return types for
\Zend\ServiceManager\ServiceLocatorInterface::get()
using real service instances - Handle controller plugins that are called using magic
__call()
in subclasses of\Zend\Mvc\Controller\AbstractController
getApplication()
,getRenderer()
,getRequest()
andgetResponse()
methods on Controllers, MvcEvents, View, ViewEvent and Application returns the real instance instead of type-hinted interfacesgetView()
method on\Zend\View\Helper\AbstractHelper
returns the real Renderer instance instead of type-hinted interface\Zend\Stdlib\ArrayObject
is configured as a Universal object crate- Handle
\Zend\Stdlib\AbstractOptions
magic properties
Installation
To use this extension, require it in Composer:
composer require --dev slam/phpstan-zend-framework
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/slam/phpstan-zend-framework/extension.neon
Configuration
This library already recognize built-in services and plugins.
You can opt in for more advanced analysis by providing the service manager from your own application:
parameters:
zendframework:
serviceManagerLoader: tests/service-manager.php
For example, tests/service-manager.php
would look something like this:
$app = \Zend\Mvc\Application::init($config);
return $app->getServiceManager();