├── .editorconfig ├── LICENSE ├── README.md ├── composer.json ├── extension.neon ├── phpcs.xml.dist └── src ├── Exception └── XmlContainerNotExistsException.php ├── Rules ├── ContainerInterfacePrivateServiceRule.php └── ContainerInterfaceUnknownServiceRule.php ├── ServiceMap.php └── Type ├── ContainerInterfaceDynamicReturnTypeExtension.php └── ControllerDynamicReturnTypeExtension.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /extension.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/extension.neon -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /src/Exception/XmlContainerNotExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/src/Exception/XmlContainerNotExistsException.php -------------------------------------------------------------------------------- /src/Rules/ContainerInterfacePrivateServiceRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/src/Rules/ContainerInterfacePrivateServiceRule.php -------------------------------------------------------------------------------- /src/Rules/ContainerInterfaceUnknownServiceRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/src/Rules/ContainerInterfaceUnknownServiceRule.php -------------------------------------------------------------------------------- /src/ServiceMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/src/ServiceMap.php -------------------------------------------------------------------------------- /src/Type/ContainerInterfaceDynamicReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/src/Type/ContainerInterfaceDynamicReturnTypeExtension.php -------------------------------------------------------------------------------- /src/Type/ControllerDynamicReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lookyman/phpstan-symfony/HEAD/src/Type/ControllerDynamicReturnTypeExtension.php --------------------------------------------------------------------------------