michaelgooden / phpstan-zend-mvc
Zend Framework 3 MVC controller plugin extension for PHPStan.
0.2.0
2018-01-24 13:14 UTC
Requires
- php: ^7.0
- phpstan/phpstan: ^0.9
- zendframework/zend-mvc: ^3.1
This package is auto-updated.
Last update: 2024-10-29 05:04:59 UTC
README
Adds support to PHPStan to correctly handle controller plugins that are called
using magic __call()
in \Zend\Mvc\Controller\AbstractController
and
children.
Installation
- Add
michaelgooden/phpstan-zend-mvc
as arequire-dev
Composer dependency - Add the following to phpstan.neon in your top-level app directory
services:
-
class: PHPStan\Reflection\ZendMvc\PluginClassReflectionExtension
tags:
- phpstan.broker.methodsClassReflectionExtension
- Run PHPStan with the config file switch
phpstan -c phpstan.neon