Your project must not contain invalid function or method calls 85

More information: https://insight.symfony.com/what-we-analyse/php.invalid_call

  1. $securedRoutesWithUserPermission = $cache->get($cacheKey, function (ItemInterface $item) use ($user){
  2. $item->expiresAfter(3600);
  3. $securedRoutesWithUserPermission = [];
  4. foreach ($this->accessControl->getAllSecuredRoutes() as $route) {
  5. $securedRoutesWithUserPermission[$route] = $this->accessControl->hasUserAccessToRoute($user, $route);
    Parameter #2 $route of method Sil\RouteSecurityBundle\Security\AccessControl::hasUserAccessToRoute() expects string, mixed given.
    Last edited by Simon Libaud
  6. }
  7. return $securedRoutesWithUserPermission;
  8. });
  1. public function getConfigTreeBuilder(): TreeBuilder
  2. {
  3. $tree = new TreeBuilder('sil_route_security');
  4. // Keep compatibility with symfony/config < 4.2
  5. if (false === method_exists($tree, 'getRootNode')) {
  6. $root = $tree->root('sil_route_security');
    Call to an undefined method Symfony\Component\Config\Definition\Builder\TreeBuilder<string>::root().
    Last edited by Simon Libaud
  7. } else {
  8. $root = $tree->getRootNode();
  9. }
  10. $root
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method arrayNode() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method children() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method defaultNull() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method booleanNode() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method scalarNode() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method defaultFalse() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method end() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $root = $tree->root('sil_route_security');
  2. } else {
  3. $root = $tree->getRootNode();
  4. }
  5. $root
    Cannot call method prototype() on mixed.
    Last edited by Simon Libaud
  6. ->children()
  7. ->booleanNode('enable_access_control')->defaultFalse()->end()
  8. ->scalarNode('secured_routes_format')->defaultNull()->end()
  9. ->scalarNode('ignored_routes_format')->defaultNull()->end()
  10. ->arrayNode('ignored_routes')->prototype('scalar')->end()->end()
  1. $configuration = new Configuration();
  2. $config = $this->processConfiguration($configuration, $configs);
  3. // Load service definition
  4. $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
  5. $loader->load('services.xml');
    Call to method load() on an unknown class Symfony\Component\DependencyInjection\Loader\XmlFileLoader.
    Last edited by Simon Libaud
  6. // Set container parameters
  7. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  8. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  9. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
  1. // Load service definition
  2. $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
  3. $loader->load('services.xml');
  4. // Set container parameters
  5. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
    Parameter #2 $value of method Symfony\Component\DependencyInjection\Container::setParameter() expects array|bool|float|int|string|UnitEnum|null, mixed given.
    Last edited by Simon Libaud
  6. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  7. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
  8. $container->setParameter('sil_route_security.ignored_routes', $config['ignored_routes']);
  9. $container->setParameter('sil_route_security.ignored_routes_format', $config['ignored_routes_format']);
  10. $container->setParameter('sil_route_security.naming_strategy', $config['naming_strategy']);
  1. $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
  2. $loader->load('services.xml');
  3. // Set container parameters
  4. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  5. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
    Parameter #2 $value of method Symfony\Component\DependencyInjection\Container::setParameter() expects array|bool|float|int|string|UnitEnum|null, mixed given.
    Last edited by Simon Libaud
  6. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
  7. $container->setParameter('sil_route_security.ignored_routes', $config['ignored_routes']);
  8. $container->setParameter('sil_route_security.ignored_routes_format', $config['ignored_routes_format']);
  9. $container->setParameter('sil_route_security.naming_strategy', $config['naming_strategy']);
  10. }
  1. $loader->load('services.xml');
  2. // Set container parameters
  3. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  4. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  5. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
    Parameter #2 $value of method Symfony\Component\DependencyInjection\Container::setParameter() expects array|bool|float|int|string|UnitEnum|null, mixed given.
    Last edited by Simon Libaud
  6. $container->setParameter('sil_route_security.ignored_routes', $config['ignored_routes']);
  7. $container->setParameter('sil_route_security.ignored_routes_format', $config['ignored_routes_format']);
  8. $container->setParameter('sil_route_security.naming_strategy', $config['naming_strategy']);
  9. }
  10. }
  1. // Set container parameters
  2. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  3. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  4. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
  5. $container->setParameter('sil_route_security.ignored_routes', $config['ignored_routes']);
    Parameter #2 $value of method Symfony\Component\DependencyInjection\Container::setParameter() expects array|bool|float|int|string|UnitEnum|null, mixed given.
    Last edited by Simon Libaud
  6. $container->setParameter('sil_route_security.ignored_routes_format', $config['ignored_routes_format']);
  7. $container->setParameter('sil_route_security.naming_strategy', $config['naming_strategy']);
  8. }
  9. }
  1. // Set container parameters
  2. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  3. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  4. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
  5. $container->setParameter('sil_route_security.ignored_routes', $config['ignored_routes']);
  6. $container->setParameter('sil_route_security.ignored_routes_format', $config['ignored_routes_format']);
    Parameter #2 $value of method Symfony\Component\DependencyInjection\Container::setParameter() expects array|bool|float|int|string|UnitEnum|null, mixed given.
    Last edited by Simon Libaud
  7. $container->setParameter('sil_route_security.naming_strategy', $config['naming_strategy']);
  8. }
  9. }
  1. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  2. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  3. $container->setParameter('sil_route_security.secured_routes_format', $config['secured_routes_format']);
  4. $container->setParameter('sil_route_security.ignored_routes', $config['ignored_routes']);
  5. $container->setParameter('sil_route_security.ignored_routes_format', $config['ignored_routes_format']);
  6. $container->setParameter('sil_route_security.naming_strategy', $config['naming_strategy']);
    Parameter #2 $value of method Symfony\Component\DependencyInjection\Container::setParameter() expects array|bool|float|int|string|UnitEnum|null, mixed given.
    Last edited by Simon Libaud
  7. }
  8. }
  1. */
  2. public function onKernelRequest(RequestEvent $event)
  3. {
  4. $route = $event->getRequest()->attributes->get('_route');
  5. if (null === $route || false === $this->accessControl->isEnable() || false === $this->accessControl->isRouteSecure($route)) {
    Cannot call method isEnable() on mixed.
    Last edited by Simon Libaud
  6. return;
  7. }
  8. if (null === $this->tokenStorage->getToken()) {
  9. throw new LogicException('Unable to retrive the current user. The token storage does not contain security token.');
  1. */
  2. public function onKernelRequest(RequestEvent $event)
  3. {
  4. $route = $event->getRequest()->attributes->get('_route');
  5. if (null === $route || false === $this->accessControl->isEnable() || false === $this->accessControl->isRouteSecure($route)) {
    Cannot call method isRouteSecure() on mixed.
    Last edited by Simon Libaud
  6. return;
  7. }
  8. if (null === $this->tokenStorage->getToken()) {
  9. throw new LogicException('Unable to retrive the current user. The token storage does not contain security token.');
  1. if (null === $route || false === $this->accessControl->isEnable() || false === $this->accessControl->isRouteSecure($route)) {
  2. return;
  3. }
  4. if (null === $this->tokenStorage->getToken()) {
    Cannot call method getToken() on mixed.
    Last edited by Simon Libaud
  5. throw new LogicException('Unable to retrive the current user. The token storage does not contain security token.');
  6. }
  7. if (false === $this->tokenStorage->getToken()->getUser() instanceof UserInterface) {
  8. throw new LogicException(sprintf('The security token must containt an User object that implements %s', UserInterface::class));
  1. if (null === $this->tokenStorage->getToken()) {
  2. throw new LogicException('Unable to retrive the current user. The token storage does not contain security token.');
  3. }
  4. if (false === $this->tokenStorage->getToken()->getUser() instanceof UserInterface) {
    Cannot call method getToken() on mixed.
    Last edited by Simon Libaud
  5. throw new LogicException(sprintf('The security token must containt an User object that implements %s', UserInterface::class));
  6. }
  7. $user = $this->tokenStorage->getToken()->getUser();
  1. if (null === $this->tokenStorage->getToken()) {
  2. throw new LogicException('Unable to retrive the current user. The token storage does not contain security token.');
  3. }
  4. if (false === $this->tokenStorage->getToken()->getUser() instanceof UserInterface) {
    Cannot call method getUser() on mixed.
    Last edited by Simon Libaud
  5. throw new LogicException(sprintf('The security token must containt an User object that implements %s', UserInterface::class));
  6. }
  7. $user = $this->tokenStorage->getToken()->getUser();
  1. if (false === $this->tokenStorage->getToken()->getUser() instanceof UserInterface) {
  2. throw new LogicException(sprintf('The security token must containt an User object that implements %s', UserInterface::class));
  3. }
  4. $user = $this->tokenStorage->getToken()->getUser();
    Cannot call method getToken() on mixed.
    Last edited by Simon Libaud
  5. if (false === $this->accessControl->hasUserAccessToRoute($user, $route)) {
  6. $access_denied_event = new AccessDeniedToRouteEvent($user, $event->getRequest());
  7. $this->eventDispatcher->dispatch($access_denied_event, AccessDeniedToRouteEvent::ON_ACCESS_DENIED_TO_ROUTE);
  1. if (false === $this->tokenStorage->getToken()->getUser() instanceof UserInterface) {
  2. throw new LogicException(sprintf('The security token must containt an User object that implements %s', UserInterface::class));
  3. }
  4. $user = $this->tokenStorage->getToken()->getUser();
    Cannot call method getUser() on mixed.
    Last edited by Simon Libaud
  5. if (false === $this->accessControl->hasUserAccessToRoute($user, $route)) {
  6. $access_denied_event = new AccessDeniedToRouteEvent($user, $event->getRequest());
  7. $this->eventDispatcher->dispatch($access_denied_event, AccessDeniedToRouteEvent::ON_ACCESS_DENIED_TO_ROUTE);
  1. throw new LogicException(sprintf('The security token must containt an User object that implements %s', UserInterface::class));
  2. }
  3. $user = $this->tokenStorage->getToken()->getUser();
  4. if (false === $this->accessControl->hasUserAccessToRoute($user, $route)) {
    Cannot call method hasUserAccessToRoute() on mixed.
    Last edited by Simon Libaud
  5. $access_denied_event = new AccessDeniedToRouteEvent($user, $event->getRequest());
  6. $this->eventDispatcher->dispatch($access_denied_event, AccessDeniedToRouteEvent::ON_ACCESS_DENIED_TO_ROUTE);
  7. if (true === $access_denied_event->hasResponse()) {
  8. $event->setResponse($access_denied_event->getResponse());
  1. $user = $this->tokenStorage->getToken()->getUser();
  2. if (false === $this->accessControl->hasUserAccessToRoute($user, $route)) {
  3. $access_denied_event = new AccessDeniedToRouteEvent($user, $event->getRequest());
  4. $this->eventDispatcher->dispatch($access_denied_event, AccessDeniedToRouteEvent::ON_ACCESS_DENIED_TO_ROUTE);
    Cannot call method dispatch() on mixed.
    Last edited by Simon Libaud
  5. if (true === $access_denied_event->hasResponse()) {
  6. $event->setResponse($access_denied_event->getResponse());
  7. return $event;
  1. if (false === $this->accessControl->hasUserAccessToRoute($user, $route)) {
  2. $access_denied_event = new AccessDeniedToRouteEvent($user, $event->getRequest());
  3. $this->eventDispatcher->dispatch($access_denied_event, AccessDeniedToRouteEvent::ON_ACCESS_DENIED_TO_ROUTE);
  4. if (true === $access_denied_event->hasResponse()) {
  5. $event->setResponse($access_denied_event->getResponse());
    Parameter #1 $response of method Symfony\Component\HttpKernel\Event\RequestEvent::setResponse() expects Symfony\Component\HttpFoundation\Response, Symfony\Component\HttpFoundation\Response|null given.
    Last edited by Simon Libaud
  6. return $event;
  7. }
  8. throw new AccessDeniedException();
  1. */
  2. public function getRoles()
  3. {
  4. $roles = [];
  5. foreach ($this->secured_routes as $secured_route) {
  6. $roles[] = $this->routeToRoleConverter->generateRoleForRoute($secured_route);
    Cannot call method generateRoleForRoute() on mixed.
    Last edited by Simon Libaud
  7. }
  8. return $roles;
  9. }
  10. }
  1. {
  2. if (false === $this->is_access_control_enable || false === $this->isRouteSecure($route)) {
  3. return true;
  4. }
  5. $role = $this->routeToRoleConverter->generateRoleForRoute($route);
    Cannot call method generateRoleForRoute() on mixed.
    Last edited by Simon Libaud
  6. return in_array($role, $user->getRoles());
  7. }
  8. /**
  1. * @return bool
  2. */
  3. public function hasUserAccessToRoutes(UserInterface $user, array $routes): bool
  4. {
  5. foreach ($routes as $route) {
  6. if (false === $this->hasUserAccessToRoute($user, $route)) {
    Parameter #2 $route of method Sil\RouteSecurityBundle\Security\AccessControl::hasUserAccessToRoute() expects string, mixed given.
    Last edited by Simon Libaud
  7. return false;
  8. }
  9. }
  10. return true;
  1. * @return bool
  2. */
  3. public function hasUserAccessAtLeastOneRoute(UserInterface $user, array $routes): bool
  4. {
  5. foreach ($routes as $route) {
  6. if (true === $this->hasUserAccessToRoute($user, $route)) {
    Parameter #2 $route of method Sil\RouteSecurityBundle\Security\AccessControl::hasUserAccessToRoute() expects string, mixed given.
    Last edited by Simon Libaud
  7. return true;
  8. }
  9. }
  10. return false;
  1. * @return bool
  2. */
  3. public function isRouteSecure(string $route): bool
  4. {
  5. // Ignored routes
  6. if (true === in_array($route, $this->ignored_routes)) {
    Parameter #2 $haystack of function in_array expects array, mixed given.
    Last edited by Simon Libaud
  7. return false;
  8. }
  9. // Ignored routes format
  10. if (null !== $this->ignored_routes_format && 1 === preg_match($this->ignored_routes_format, $route)) {
  1. if (true === in_array($route, $this->ignored_routes)) {
  2. return false;
  3. }
  4. // Ignored routes format
  5. if (null !== $this->ignored_routes_format && 1 === preg_match($this->ignored_routes_format, $route)) {
    Parameter #1 $pattern of function preg_match expects string, mixed given.
    Last edited by Simon Libaud
  6. return false;
  7. }
  8. // Secured routes
  9. if (true === in_array($route, $this->secured_routes)) {
  1. if (null !== $this->ignored_routes_format && 1 === preg_match($this->ignored_routes_format, $route)) {
  2. return false;
  3. }
  4. // Secured routes
  5. if (true === in_array($route, $this->secured_routes)) {
    Parameter #2 $haystack of function in_array expects array, mixed given.
    Last edited by Simon Libaud
  6. return true;
  7. }
  8. // Secured routes format
  9. if (null !== $this->secured_routes_format && 1 === preg_match($this->secured_routes_format, $route)) {
  1. if (true === in_array($route, $this->secured_routes)) {
  2. return true;
  3. }
  4. // Secured routes format
  5. if (null !== $this->secured_routes_format && 1 === preg_match($this->secured_routes_format, $route)) {
    Parameter #1 $pattern of function preg_match expects string, mixed given.
    Last edited by Simon Libaud
  6. return true;
  7. }
  8. return false;
  9. }
  1. * @return array
  2. */
  3. public function getAllSecuredRoutes(): array
  4. {
  5. $all_secured_routes = [];
  6. $configured_routes = array_keys($this->router->getRouteCollection()->all());
    Cannot call method all() on mixed.
    Last edited by Simon Libaud
  7. foreach ($configured_routes as $configured_route) if (true === $this->isRouteSecure($configured_route)){
  8. $all_secured_routes[] = $configured_route;
  9. }
  1. * @return array
  2. */
  3. public function getAllSecuredRoutes(): array
  4. {
  5. $all_secured_routes = [];
  6. $configured_routes = array_keys($this->router->getRouteCollection()->all());
    Cannot call method getRouteCollection() on mixed.
    Last edited by Simon Libaud
  7. foreach ($configured_routes as $configured_route) if (true === $this->isRouteSecure($configured_route)){
  8. $all_secured_routes[] = $configured_route;
  9. }
  1. * @return array
  2. */
  3. public function getAllSecuredRoutes(): array
  4. {
  5. $all_secured_routes = [];
  6. $configured_routes = array_keys($this->router->getRouteCollection()->all());
    Parameter #1 $array of function array_keys expects array, mixed given.
    Last edited by Simon Libaud
  7. foreach ($configured_routes as $configured_route) if (true === $this->isRouteSecure($configured_route)){
  8. $all_secured_routes[] = $configured_route;
  9. }
  1. public function getAllSecuredRoutes(): array
  2. {
  3. $all_secured_routes = [];
  4. $configured_routes = array_keys($this->router->getRouteCollection()->all());
  5. foreach ($configured_routes as $configured_route) if (true === $this->isRouteSecure($configured_route)){
    Parameter #1 $route of method Sil\RouteSecurityBundle\Security\AccessControl::isRouteSecure() expects string, int|string given.
    Last edited by Simon Libaud
  6. $all_secured_routes[] = $configured_route;
  7. }
  8. return $all_secured_routes;
  9. }
  1. * @param Response $response
  2. * @param \Throwable|null $exception
  3. */
  4. public function collect(Request $request, Response $response, \Throwable $exception = null): void
  5. {
  6. $this->data['is_access_control_enable'] = $this->accessControl->isEnable();
    Cannot call method isEnable() on mixed.
    Last edited by Simon Libaud
  7. $route = $request->get('_route');
  8. $this->data['is_route_secure'] = null === $route ? false : $this->accessControl->isRouteSecure($route);
  9. $this->data['role_for_route'] = $this->routeToRoleConverter->generateRoleForRoute($route);
  10. }
  1. * @param \Throwable|null $exception
  2. */
  3. public function collect(Request $request, Response $response, \Throwable $exception = null): void
  4. {
  5. $this->data['is_access_control_enable'] = $this->accessControl->isEnable();
  6. $route = $request->get('_route');
    Call to an undefined method Symfony\Component\HttpFoundation\Request::get().
    Last edited by Simon Libaud
  7. $this->data['is_route_secure'] = null === $route ? false : $this->accessControl->isRouteSecure($route);
  8. $this->data['role_for_route'] = $this->routeToRoleConverter->generateRoleForRoute($route);
  9. }
  10. public function isAccessControlEnable(): bool
  1. */
  2. public function collect(Request $request, Response $response, \Throwable $exception = null): void
  3. {
  4. $this->data['is_access_control_enable'] = $this->accessControl->isEnable();
  5. $route = $request->get('_route');
  6. $this->data['is_route_secure'] = null === $route ? false : $this->accessControl->isRouteSecure($route);
    Cannot call method isRouteSecure() on mixed.
    Last edited by Simon Libaud
  7. $this->data['role_for_route'] = $this->routeToRoleConverter->generateRoleForRoute($route);
  8. }
  9. public function isAccessControlEnable(): bool
  10. {
  1. public function collect(Request $request, Response $response, \Throwable $exception = null): void
  2. {
  3. $this->data['is_access_control_enable'] = $this->accessControl->isEnable();
  4. $route = $request->get('_route');
  5. $this->data['is_route_secure'] = null === $route ? false : $this->accessControl->isRouteSecure($route);
  6. $this->data['role_for_route'] = $this->routeToRoleConverter->generateRoleForRoute($route);
    Cannot call method generateRoleForRoute() on mixed.
    Last edited by Simon Libaud
  7. }
  8. public function isAccessControlEnable(): bool
  9. {
  10. return $this->data['is_access_control_enable'];
  1. }
  2. public function createService026(): PHPStan\Php\PhpVersion
  3. {
  4. return $this->getService('027')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService027(): PHPStan\Php\PhpVersionFactory
  7. {
  1. }
  2. public function createService027(): PHPStan\Php\PhpVersionFactory
  3. {
  4. return $this->getService('028')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService028(): PHPStan\Php\PhpVersionFactoryFactory
  7. {
  1. }
  2. public function createService060(): PHPStan\Analyser\ConstantResolver
  3. {
  4. return $this->getService('061')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService061(): PHPStan\Analyser\ConstantResolverFactory
  7. {
  1. public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager
  2. {
  3. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  4. $this->container->getService('075'),
    Cannot call method getService() on mixed.
    Collective
  5. $this->container->getService('072'),
  6. $this->container->getService('fileFinderScan'),
  7. $this->container->getService('reflectionProvider'),
  8. $this->container->getService('045'),
  9. $this->container->getService('085'),
  1. public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager
  2. {
  3. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  4. $this->container->getService('075'),
  5. $this->container->getService('072'),
    Cannot call method getService() on mixed.
    Collective
  6. $this->container->getService('fileFinderScan'),
  7. $this->container->getService('reflectionProvider'),
  8. $this->container->getService('045'),
  9. $this->container->getService('085'),
  10. '/app/var/phpstan/resultCache.php',
  1. public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager
  2. {
  3. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  4. $this->container->getService('075'),
  5. $this->container->getService('072'),
  6. $this->container->getService('fileFinderScan'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('reflectionProvider'),
  8. $this->container->getService('045'),
  9. $this->container->getService('085'),
  10. '/app/var/phpstan/resultCache.php',
  11. $this->container->getParameter('analysedPaths'),
  1. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  2. $this->container->getService('075'),
  3. $this->container->getService('072'),
  4. $this->container->getService('fileFinderScan'),
  5. $this->container->getService('reflectionProvider'),
  6. $this->container->getService('045'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('085'),
  8. '/app/var/phpstan/resultCache.php',
  9. $this->container->getParameter('analysedPaths'),
  10. $this->container->getParameter('analysedPathsFromConfig'),
  11. ['/app'],
  1. $this->container->getService('fileFinderScan'),
  2. $this->container->getService('reflectionProvider'),
  3. $this->container->getService('045'),
  4. $this->container->getService('085'),
  5. '/app/var/phpstan/resultCache.php',
  6. $this->container->getParameter('analysedPaths'),
    Cannot call method getParameter() on mixed.
    Collective
  7. $this->container->getParameter('analysedPathsFromConfig'),
  8. ['/app'],
  9. 'max',
  10. null,
  11. [
  1. $this->container->getService('reflectionProvider'),
  2. $this->container->getService('045'),
  3. $this->container->getService('085'),
  4. '/app/var/phpstan/resultCache.php',
  5. $this->container->getParameter('analysedPaths'),
  6. $this->container->getParameter('analysedPathsFromConfig'),
    Cannot call method getParameter() on mixed.
    Collective
  7. ['/app'],
  8. 'max',
  9. null,
  10. [
  11. 'phar:///opt/tools/phpstan.phar/stubs/runtime/ReflectionUnionType.php',
  1. }
  2. public function createService066(): PHPStan\Collectors\Registry
  3. {
  4. return $this->getService('067')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService067(): PHPStan\Collectors\RegistryFactory
  7. {
  1. }
  2. public function create(array $analyseExcludes): PHPStan\File\FileExcluder
  3. {
  4. return new PHPStan\File\FileExcluder($this->container->getService('085'), $analyseExcludes);
    Cannot call method getService() on mixed.
    Collective
  5. }
  6. };
  7. }
  1. }
  2. public function create(PHPStan\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator
  3. {
  4. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('0106'));
    Cannot call method getService() on mixed.
    Collective
  5. }
  6. };
  7. }
  1. public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator(
  4. $this->container->getService('0100'),
    Cannot call method getService() on mixed.
    Collective
  5. $fileName
  6. );
  7. }
  8. };
  9. }
  1. return new PHPStan\Reflection\Php\PhpMethodReflection(
  2. $this->container->getService('096'),
  3. $declaringClass,
  4. $declaringTrait,
  5. $reflection,
  6. $this->container->getService('reflectionProvider'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('094'),
  8. $this->container->getService('defaultAnalysisParser'),
  9. $templateTypeMap,
  10. $phpDocParameterTypes,
  11. $phpDocReturnType,
  1. $declaringClass,
  2. $declaringTrait,
  3. $reflection,
  4. $this->container->getService('reflectionProvider'),
  5. $this->container->getService('094'),
  6. $this->container->getService('defaultAnalysisParser'),
    Cannot call method getService() on mixed.
    Collective
  7. $templateTypeMap,
  8. $phpDocParameterTypes,
  9. $phpDocReturnType,
  10. $phpDocThrowType,
  11. $deprecatedDescription,
  1. }
  2. public function createService0128(): PHPStan\Reflection\SignatureMap\SignatureMapProvider
  3. {
  4. return $this->getService('0127')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService0129(): PHPStan\Rules\Api\ApiRuleHelper
  7. {
  1. public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->container->getService('0122'),
    Cannot call method getService() on mixed.
    Collective
  5. $this->container->getService('096'),
  6. $this->container->getService('078'),
  7. $reflector,
  8. $this->container->getService('0185'),
  9. $this->container->getService('036'),
  1. public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->container->getService('0122'),
  5. $this->container->getService('096'),
    Cannot call method getService() on mixed.
    Collective
  6. $this->container->getService('078'),
  7. $reflector,
  8. $this->container->getService('0185'),
  9. $this->container->getService('036'),
  10. $this->container->getService('0368'),
  1. public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->container->getService('0122'),
  5. $this->container->getService('096'),
  6. $this->container->getService('078'),
    Cannot call method getService() on mixed.
    Collective
  7. $reflector,
  8. $this->container->getService('0185'),
  9. $this->container->getService('036'),
  10. $this->container->getService('0368'),
  11. $this->container->getService('026'),
  1. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  2. $this->container->getService('0122'),
  3. $this->container->getService('096'),
  4. $this->container->getService('078'),
  5. $reflector,
  6. $this->container->getService('0185'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('036'),
  8. $this->container->getService('0368'),
  9. $this->container->getService('026'),
  10. $this->container->getService('0123'),
  11. $this->container->getService('stubPhpDocProvider'),
  1. $this->container->getService('0122'),
  2. $this->container->getService('096'),
  3. $this->container->getService('078'),
  4. $reflector,
  5. $this->container->getService('0185'),
  6. $this->container->getService('036'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('0368'),
  8. $this->container->getService('026'),
  9. $this->container->getService('0123'),
  10. $this->container->getService('stubPhpDocProvider'),
  11. $this->container->getService('095'),
  1. $this->container->getService('096'),
  2. $this->container->getService('078'),
  3. $reflector,
  4. $this->container->getService('0185'),
  5. $this->container->getService('036'),
  6. $this->container->getService('0368'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('026'),
  8. $this->container->getService('0123'),
  9. $this->container->getService('stubPhpDocProvider'),
  10. $this->container->getService('095'),
  11. $this->container->getService('relativePathHelper'),
  1. $this->container->getService('078'),
  2. $reflector,
  3. $this->container->getService('0185'),
  4. $this->container->getService('036'),
  5. $this->container->getService('0368'),
  6. $this->container->getService('026'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('0123'),
  8. $this->container->getService('stubPhpDocProvider'),
  9. $this->container->getService('095'),
  10. $this->container->getService('relativePathHelper'),
  11. $this->container->getService('025'),
  1. $reflector,
  2. $this->container->getService('0185'),
  3. $this->container->getService('036'),
  4. $this->container->getService('0368'),
  5. $this->container->getService('026'),
  6. $this->container->getService('0123'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('stubPhpDocProvider'),
  8. $this->container->getService('095'),
  9. $this->container->getService('relativePathHelper'),
  10. $this->container->getService('025'),
  11. $this->container->getService('085'),
  1. $this->container->getService('0185'),
  2. $this->container->getService('036'),
  3. $this->container->getService('0368'),
  4. $this->container->getService('026'),
  5. $this->container->getService('0123'),
  6. $this->container->getService('stubPhpDocProvider'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('095'),
  8. $this->container->getService('relativePathHelper'),
  9. $this->container->getService('025'),
  10. $this->container->getService('085'),
  11. $this->container->getService('0365'),
  1. $this->container->getService('036'),
  2. $this->container->getService('0368'),
  3. $this->container->getService('026'),
  4. $this->container->getService('0123'),
  5. $this->container->getService('stubPhpDocProvider'),
  6. $this->container->getService('095'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('relativePathHelper'),
  8. $this->container->getService('025'),
  9. $this->container->getService('085'),
  10. $this->container->getService('0365'),
  11. $this->container->getService('0128'),
  1. $this->container->getService('0368'),
  2. $this->container->getService('026'),
  3. $this->container->getService('0123'),
  4. $this->container->getService('stubPhpDocProvider'),
  5. $this->container->getService('095'),
  6. $this->container->getService('relativePathHelper'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('025'),
  8. $this->container->getService('085'),
  9. $this->container->getService('0365'),
  10. $this->container->getService('0128'),
  11. $this->container->getService('094'),
  1. $this->container->getService('026'),
  2. $this->container->getService('0123'),
  3. $this->container->getService('stubPhpDocProvider'),
  4. $this->container->getService('095'),
  5. $this->container->getService('relativePathHelper'),
  6. $this->container->getService('025'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('085'),
  8. $this->container->getService('0365'),
  9. $this->container->getService('0128'),
  10. $this->container->getService('094'),
  11. ['stdClass']
  1. $this->container->getService('0123'),
  2. $this->container->getService('stubPhpDocProvider'),
  3. $this->container->getService('095'),
  4. $this->container->getService('relativePathHelper'),
  5. $this->container->getService('025'),
  6. $this->container->getService('085'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('0365'),
  8. $this->container->getService('0128'),
  9. $this->container->getService('094'),
  10. ['stdClass']
  11. );
  1. $this->container->getService('stubPhpDocProvider'),
  2. $this->container->getService('095'),
  3. $this->container->getService('relativePathHelper'),
  4. $this->container->getService('025'),
  5. $this->container->getService('085'),
  6. $this->container->getService('0365'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('0128'),
  8. $this->container->getService('094'),
  9. ['stdClass']
  10. );
  11. }
  1. $this->container->getService('095'),
  2. $this->container->getService('relativePathHelper'),
  3. $this->container->getService('025'),
  4. $this->container->getService('085'),
  5. $this->container->getService('0365'),
  6. $this->container->getService('0128'),
    Cannot call method getService() on mixed.
    Collective
  7. $this->container->getService('094'),
  8. ['stdClass']
  9. );
  10. }
  11. };
  1. $this->container->getService('relativePathHelper'),
  2. $this->container->getService('025'),
  3. $this->container->getService('085'),
  4. $this->container->getService('0365'),
  5. $this->container->getService('0128'),
  6. $this->container->getService('094'),
    Cannot call method getService() on mixed.
    Collective
  7. ['stdClass']
  8. );
  9. }
  10. };
  11. }
  1. }
  2. public function createService0365(): PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber
  3. {
  4. return $this->getService('0364')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService0366(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber
  7. {
  1. }
  2. public function createService0366(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber
  3. {
  4. return $this->getService('0367')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createService0367(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory
  7. {
  1. }
  2. public function createServiceBetterReflectionSourceLocator(): PHPStan\BetterReflection\SourceLocator\Type\SourceLocator
  3. {
  4. return $this->getService('0362')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage
  7. {
  1. }
  2. public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer
  3. {
  4. return $this->getService('02')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createServiceCurrentPhpVersionPhpParser(): PhpParser\ParserAbstract
  7. {
  1. }
  2. public function createServiceCurrentPhpVersionPhpParser(): PhpParser\ParserAbstract
  3. {
  4. return $this->getService('currentPhpVersionPhpParserFactory')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createServiceCurrentPhpVersionPhpParserFactory(): PHPStan\Parser\PhpParserFactory
  7. {
  1. }
  2. public function createServiceFileExcluderAnalyse(): PHPStan\File\FileExcluder
  3. {
  4. return $this->getService('086')->createAnalyseFileExcluder();
    Call to an undefined method object::createAnalyseFileExcluder().
    Collective
  5. }
  6. public function createServiceFileExcluderScan(): PHPStan\File\FileExcluder
  7. {
  1. }
  2. public function createServiceFileExcluderScan(): PHPStan\File\FileExcluder
  3. {
  4. return $this->getService('086')->createScanFileExcluder();
    Call to an undefined method object::createScanFileExcluder().
    Collective
  5. }
  6. public function createServiceFileFinderAnalyse(): PHPStan\File\FileFinder
  7. {
  1. }
  2. public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative
  3. {
  4. return $this->getService('02')->createEmulative();
    Call to an undefined method object::createEmulative().
    Collective
  5. }
  6. public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser
  7. {
  1. }
  2. public function createServiceReflectionProvider(): PHPStan\Reflection\ReflectionProvider
  3. {
  4. return $this->getService('reflectionProviderFactory')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createServiceReflectionProviderFactory(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory
  7. {
  1. }
  2. public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier
  3. {
  4. return $this->getService('typeSpecifierFactory')->create();
    Call to an undefined method object::create().
    Collective
  5. }
  6. public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory
  7. {

Your project must not contain invalid instantiations 864

More information: https://insight.symfony.com/what-we-analyse/php.invalid_instantiation

  1. // Bundle configuration
  2. $configuration = new Configuration();
  3. $config = $this->processConfiguration($configuration, $configs);
  4. // Load service definition
  5. $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
    Instantiated class Symfony\Component\DependencyInjection\Loader\XmlFileLoader not found.
    Last edited by Simon Libaud
  6. $loader->load('services.xml');
  7. // Set container parameters
  8. $container->setParameter('sil_route_security.enable_access_control', $config['enable_access_control']);
  9. $container->setParameter('sil_route_security.secured_routes', $config['secured_routes']);
  1. }
  2. public function createService02(): PHPStan\Parser\LexerFactory
  3. {
  4. return new PHPStan\Parser\LexerFactory($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Parser\LexerFactory constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService03(): PhpParser\NodeVisitor\NameResolver
  7. {
  1. }
  2. public function createService023(): PHPStan\Node\Printer\ExprPrinter
  3. {
  4. return new PHPStan\Node\Printer\ExprPrinter($this->getService('024'));
    Parameter #1 $printer of class PHPStan\Node\Printer\ExprPrinter constructor expects PHPStan\Node\Printer\Printer, object given.
    Collective
  5. }
  6. public function createService024(): PHPStan\Node\Printer\Printer
  7. {
  1. }
  2. public function createService025(): PHPStan\Broker\AnonymousClassNameHelper
  3. {
  4. return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('085'), $this->getService('simpleRelativePathHelper'));
    Parameter #2 $relativePathHelper of class PHPStan\Broker\AnonymousClassNameHelper constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. }
  6. public function createService026(): PHPStan\Php\PhpVersion
  7. {
  1. }
  2. public function createService025(): PHPStan\Broker\AnonymousClassNameHelper
  3. {
  4. return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('085'), $this->getService('simpleRelativePathHelper'));
    Parameter #1 $fileHelper of class PHPStan\Broker\AnonymousClassNameHelper constructor expects PHPStan\File\FileHelper, object given.
    Collective
  5. }
  6. public function createService026(): PHPStan\Php\PhpVersion
  7. {
  1. }
  2. public function createService031(): PHPStan\PhpDocParser\Lexer\Lexer
  3. {
  4. return new PHPStan\PhpDocParser\Lexer\Lexer($this->getService('030'));
    Parameter #1 $config of class PHPStan\PhpDocParser\Lexer\Lexer constructor expects PHPStan\PhpDocParser\ParserConfig, object given.
    Collective
  5. }
  6. public function createService032(): PHPStan\PhpDocParser\Parser\TypeParser
  7. {
  1. }
  2. public function createService032(): PHPStan\PhpDocParser\Parser\TypeParser
  3. {
  4. return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('030'), $this->getService('033'));
    Parameter #1 $config of class PHPStan\PhpDocParser\Parser\TypeParser constructor expects PHPStan\PhpDocParser\ParserConfig, object given.
    Collective
  5. }
  6. public function createService033(): PHPStan\PhpDocParser\Parser\ConstExprParser
  7. {
  1. }
  2. public function createService032(): PHPStan\PhpDocParser\Parser\TypeParser
  3. {
  4. return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('030'), $this->getService('033'));
    Parameter #2 $constExprParser of class PHPStan\PhpDocParser\Parser\TypeParser constructor expects PHPStan\PhpDocParser\Parser\ConstExprParser, object given.
    Collective
  5. }
  6. public function createService033(): PHPStan\PhpDocParser\Parser\ConstExprParser
  7. {
  1. }
  2. public function createService033(): PHPStan\PhpDocParser\Parser\ConstExprParser
  3. {
  4. return new PHPStan\PhpDocParser\Parser\ConstExprParser($this->getService('030'));
    Parameter #1 $config of class PHPStan\PhpDocParser\Parser\ConstExprParser constructor expects PHPStan\PhpDocParser\ParserConfig, object given.
    Collective
  5. }
  6. public function createService034(): PHPStan\PhpDocParser\Parser\PhpDocParser
  7. {
  1. public function createService034(): PHPStan\PhpDocParser\Parser\PhpDocParser
  2. {
  3. return new PHPStan\PhpDocParser\Parser\PhpDocParser(
  4. $this->getService('030'),
    Parameter #1 $config of class PHPStan\PhpDocParser\Parser\PhpDocParser constructor expects PHPStan\PhpDocParser\ParserConfig, object given.
    Collective
  5. $this->getService('032'),
  6. $this->getService('033')
  7. );
  8. }
  1. public function createService034(): PHPStan\PhpDocParser\Parser\PhpDocParser
  2. {
  3. return new PHPStan\PhpDocParser\Parser\PhpDocParser(
  4. $this->getService('030'),
  5. $this->getService('032'),
    Parameter #2 $typeParser of class PHPStan\PhpDocParser\Parser\PhpDocParser constructor expects PHPStan\PhpDocParser\Parser\TypeParser, object given.
    Collective
  6. $this->getService('033')
  7. );
  8. }
  1. public function createService034(): PHPStan\PhpDocParser\Parser\PhpDocParser
  2. {
  3. return new PHPStan\PhpDocParser\Parser\PhpDocParser(
  4. $this->getService('030'),
  5. $this->getService('032'),
  6. $this->getService('033')
    Parameter #3 $constantExprParser of class PHPStan\PhpDocParser\Parser\PhpDocParser constructor expects PHPStan\PhpDocParser\Parser\ConstExprParser, object given.
    Collective
  7. );
  8. }
  9. public function createService035(): PHPStan\PhpDocParser\Printer\Printer
  1. }
  2. public function createService036(): PHPStan\PhpDoc\PhpDocInheritanceResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0185'), $this->getService('stubPhpDocProvider'));
    Parameter #2 $stubPhpDocProvider of class PHPStan\PhpDoc\PhpDocInheritanceResolver constructor expects PHPStan\PhpDoc\StubPhpDocProvider, object given.
    Collective
  5. }
  6. public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver
  7. {
  1. }
  2. public function createService036(): PHPStan\PhpDoc\PhpDocInheritanceResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0185'), $this->getService('stubPhpDocProvider'));
    Parameter #1 $fileTypeMapper of class PHPStan\PhpDoc\PhpDocInheritanceResolver constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver
  7. {
  1. }
  2. public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('040'), $this->getService('039'), $this->getService('0170'));
    Parameter #3 $unresolvableTypeHelper of class PHPStan\PhpDoc\PhpDocNodeResolver constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  5. }
  6. public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver
  7. {
  1. }
  2. public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('040'), $this->getService('039'), $this->getService('0170'));
    Parameter #2 $constExprNodeResolver of class PHPStan\PhpDoc\PhpDocNodeResolver constructor expects PHPStan\PhpDoc\ConstExprNodeResolver, object given.
    Collective
  5. }
  6. public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver
  7. {
  1. }
  2. public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('040'), $this->getService('039'), $this->getService('0170'));
    Parameter #1 $typeNodeResolver of class PHPStan\PhpDoc\PhpDocNodeResolver constructor expects PHPStan\PhpDoc\TypeNodeResolver, object given.
    Collective
  5. }
  6. public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver
  7. {
  1. }
  2. public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('031'), $this->getService('034'));
    Parameter #2 $phpDocParser of class PHPStan\PhpDoc\PhpDocStringResolver constructor expects PHPStan\PhpDocParser\Parser\PhpDocParser, object given.
    Collective
  5. }
  6. public function createService039(): PHPStan\PhpDoc\ConstExprNodeResolver
  7. {
  1. }
  2. public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver
  3. {
  4. return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('031'), $this->getService('034'));
    Parameter #1 $phpDocLexer of class PHPStan\PhpDoc\PhpDocStringResolver constructor expects PHPStan\PhpDocParser\Lexer\Lexer, object given.
    Collective
  5. }
  6. public function createService039(): PHPStan\PhpDoc\ConstExprNodeResolver
  7. {
  1. }
  2. public function createService039(): PHPStan\PhpDoc\ConstExprNodeResolver
  3. {
  4. return new PHPStan\PhpDoc\ConstExprNodeResolver($this->getService('0122'), $this->getService('096'));
    Parameter #1 $reflectionProviderProvider of class PHPStan\PhpDoc\ConstExprNodeResolver constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  5. }
  6. public function createService040(): PHPStan\PhpDoc\TypeNodeResolver
  7. {
  1. }
  2. public function createService039(): PHPStan\PhpDoc\ConstExprNodeResolver
  3. {
  4. return new PHPStan\PhpDoc\ConstExprNodeResolver($this->getService('0122'), $this->getService('096'));
    Parameter #2 $initializerExprTypeResolver of class PHPStan\PhpDoc\ConstExprNodeResolver constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. }
  6. public function createService040(): PHPStan\PhpDoc\TypeNodeResolver
  7. {
  1. public function createService040(): PHPStan\PhpDoc\TypeNodeResolver
  2. {
  3. return new PHPStan\PhpDoc\TypeNodeResolver(
  4. $this->getService('041'),
    Parameter #1 $extensionRegistryProvider of class PHPStan\PhpDoc\TypeNodeResolver constructor expects PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider, object given.
    Collective
  5. $this->getService('0122'),
  6. $this->getService('0187'),
  7. $this->getService('060'),
  8. $this->getService('096')
  9. );
  1. public function createService040(): PHPStan\PhpDoc\TypeNodeResolver
  2. {
  3. return new PHPStan\PhpDoc\TypeNodeResolver(
  4. $this->getService('041'),
  5. $this->getService('0122'),
    Parameter #2 $reflectionProviderProvider of class PHPStan\PhpDoc\TypeNodeResolver constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  6. $this->getService('0187'),
  7. $this->getService('060'),
  8. $this->getService('096')
  9. );
  10. }
  1. public function createService040(): PHPStan\PhpDoc\TypeNodeResolver
  2. {
  3. return new PHPStan\PhpDoc\TypeNodeResolver(
  4. $this->getService('041'),
  5. $this->getService('0122'),
  6. $this->getService('0187'),
    Parameter #3 $typeAliasResolverProvider of class PHPStan\PhpDoc\TypeNodeResolver constructor expects PHPStan\Type\TypeAliasResolverProvider, object given.
    Collective
  7. $this->getService('060'),
  8. $this->getService('096')
  9. );
  10. }
  1. {
  2. return new PHPStan\PhpDoc\TypeNodeResolver(
  3. $this->getService('041'),
  4. $this->getService('0122'),
  5. $this->getService('0187'),
  6. $this->getService('060'),
    Parameter #4 $constantResolver of class PHPStan\PhpDoc\TypeNodeResolver constructor expects PHPStan\Analyser\ConstantResolver, object given.
    Collective
  7. $this->getService('096')
  8. );
  9. }
  1. return new PHPStan\PhpDoc\TypeNodeResolver(
  2. $this->getService('041'),
  3. $this->getService('0122'),
  4. $this->getService('0187'),
  5. $this->getService('060'),
  6. $this->getService('096')
    Parameter #5 $initializerExprTypeResolver of class PHPStan\PhpDoc\TypeNodeResolver constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  7. );
  8. }
  9. public function createService041(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider
  1. }
  2. public function createService041(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider
  3. {
  4. return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService042(): PHPStan\PhpDoc\TypeStringResolver
  7. {
  1. }
  2. public function createService042(): PHPStan\PhpDoc\TypeStringResolver
  3. {
  4. return new PHPStan\PhpDoc\TypeStringResolver($this->getService('031'), $this->getService('032'), $this->getService('040'));
    Parameter #1 $typeLexer of class PHPStan\PhpDoc\TypeStringResolver constructor expects PHPStan\PhpDocParser\Lexer\Lexer, object given.
    Collective
  5. }
  6. public function createService043(): PHPStan\PhpDoc\StubValidator
  7. {
  1. }
  2. public function createService042(): PHPStan\PhpDoc\TypeStringResolver
  3. {
  4. return new PHPStan\PhpDoc\TypeStringResolver($this->getService('031'), $this->getService('032'), $this->getService('040'));
    Parameter #3 $typeNodeResolver of class PHPStan\PhpDoc\TypeStringResolver constructor expects PHPStan\PhpDoc\TypeNodeResolver, object given.
    Collective
  5. }
  6. public function createService043(): PHPStan\PhpDoc\StubValidator
  7. {
  1. }
  2. public function createService042(): PHPStan\PhpDoc\TypeStringResolver
  3. {
  4. return new PHPStan\PhpDoc\TypeStringResolver($this->getService('031'), $this->getService('032'), $this->getService('040'));
    Parameter #2 $typeParser of class PHPStan\PhpDoc\TypeStringResolver constructor expects PHPStan\PhpDocParser\Parser\TypeParser, object given.
    Collective
  5. }
  6. public function createService043(): PHPStan\PhpDoc\StubValidator
  7. {
  1. }
  2. public function createService043(): PHPStan\PhpDoc\StubValidator
  3. {
  4. return new PHPStan\PhpDoc\StubValidator($this->getService('077'));
    Parameter #1 $derivativeContainerFactory of class PHPStan\PhpDoc\StubValidator constructor expects PHPStan\DependencyInjection\DerivativeContainerFactory, object given.
    Collective
  5. }
  6. public function createService044(): PHPStan\PhpDoc\SocketSelectStubFilesExtension
  7. {
  1. }
  2. public function createService044(): PHPStan\PhpDoc\SocketSelectStubFilesExtension
  3. {
  4. return new PHPStan\PhpDoc\SocketSelectStubFilesExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\PhpDoc\SocketSelectStubFilesExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService045(): PHPStan\PhpDoc\DefaultStubFilesProvider
  7. {
  1. public function createService045(): PHPStan\PhpDoc\DefaultStubFilesProvider
  2. {
  3. return new PHPStan\PhpDoc\DefaultStubFilesProvider(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\PhpDoc\DefaultStubFilesProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. [
  6. 'phar:///opt/tools/phpstan.phar/stubs/ReflectionAttribute.stub',
  7. 'phar:///opt/tools/phpstan.phar/stubs/ReflectionClassConstant.stub',
  8. 'phar:///opt/tools/phpstan.phar/stubs/ReflectionFunctionAbstract.stub',
  9. 'phar:///opt/tools/phpstan.phar/stubs/ReflectionMethod.stub',
  1. }
  2. public function createService046(): PHPStan\PhpDoc\JsonValidateStubFilesExtension
  3. {
  4. return new PHPStan\PhpDoc\JsonValidateStubFilesExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\PhpDoc\JsonValidateStubFilesExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService047(): PHPStan\PhpDoc\ReflectionClassStubFilesExtension
  7. {
  1. }
  2. public function createService047(): PHPStan\PhpDoc\ReflectionClassStubFilesExtension
  3. {
  4. return new PHPStan\PhpDoc\ReflectionClassStubFilesExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\PhpDoc\ReflectionClassStubFilesExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService048(): PHPStan\PhpDoc\ReflectionEnumStubFilesExtension
  7. {
  1. }
  2. public function createService048(): PHPStan\PhpDoc\ReflectionEnumStubFilesExtension
  3. {
  4. return new PHPStan\PhpDoc\ReflectionEnumStubFilesExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\PhpDoc\ReflectionEnumStubFilesExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService049(): PHPStan\Analyser\Analyser
  7. {
  1. public function createService049(): PHPStan\Analyser\Analyser
  2. {
  3. return new PHPStan\Analyser\Analyser(
  4. $this->getService('051'),
    Parameter #1 $fileAnalyser of class PHPStan\Analyser\Analyser constructor expects PHPStan\Analyser\FileAnalyser, object given.
    Collective
  5. $this->getService('registry'),
  6. $this->getService('066'),
  7. $this->getService('059'),
  8. 50
  9. );
  1. public function createService049(): PHPStan\Analyser\Analyser
  2. {
  3. return new PHPStan\Analyser\Analyser(
  4. $this->getService('051'),
  5. $this->getService('registry'),
    Parameter #2 $ruleRegistry of class PHPStan\Analyser\Analyser constructor expects PHPStan\Rules\Registry, object given.
    Collective
  6. $this->getService('066'),
  7. $this->getService('059'),
  8. 50
  9. );
  10. }
  1. public function createService049(): PHPStan\Analyser\Analyser
  2. {
  3. return new PHPStan\Analyser\Analyser(
  4. $this->getService('051'),
  5. $this->getService('registry'),
  6. $this->getService('066'),
    Parameter #3 $collectorRegistry of class PHPStan\Analyser\Analyser constructor expects PHPStan\Collectors\Registry, object given.
    Collective
  7. $this->getService('059'),
  8. 50
  9. );
  10. }
  1. {
  2. return new PHPStan\Analyser\Analyser(
  3. $this->getService('051'),
  4. $this->getService('registry'),
  5. $this->getService('066'),
  6. $this->getService('059'),
    Parameter #4 $nodeScopeResolver of class PHPStan\Analyser\Analyser constructor expects PHPStan\Analyser\NodeScopeResolver, object given.
    Collective
  7. 50
  8. );
  9. }
  1. public function createService050(): PHPStan\Analyser\AnalyserResultFinalizer
  2. {
  3. return new PHPStan\Analyser\AnalyserResultFinalizer(
  4. $this->getService('registry'),
    Parameter #1 $ruleRegistry of class PHPStan\Analyser\AnalyserResultFinalizer constructor expects PHPStan\Rules\Registry, object given.
    Collective
  5. $this->getService('052'),
  6. $this->getService('054'),
  7. $this->getService('058'),
  8. $this->getService('053'),
  9. true
  1. public function createService050(): PHPStan\Analyser\AnalyserResultFinalizer
  2. {
  3. return new PHPStan\Analyser\AnalyserResultFinalizer(
  4. $this->getService('registry'),
  5. $this->getService('052'),
    Parameter #2 $ignoreErrorExtensionProvider of class PHPStan\Analyser\AnalyserResultFinalizer constructor expects PHPStan\Analyser\IgnoreErrorExtensionProvider, object given.
    Collective
  6. $this->getService('054'),
  7. $this->getService('058'),
  8. $this->getService('053'),
  9. true
  10. );
  1. public function createService050(): PHPStan\Analyser\AnalyserResultFinalizer
  2. {
  3. return new PHPStan\Analyser\AnalyserResultFinalizer(
  4. $this->getService('registry'),
  5. $this->getService('052'),
  6. $this->getService('054'),
    Parameter #3 $ruleErrorTransformer of class PHPStan\Analyser\AnalyserResultFinalizer constructor expects PHPStan\Analyser\RuleErrorTransformer, object given.
    Collective
  7. $this->getService('058'),
  8. $this->getService('053'),
  9. true
  10. );
  11. }
  1. {
  2. return new PHPStan\Analyser\AnalyserResultFinalizer(
  3. $this->getService('registry'),
  4. $this->getService('052'),
  5. $this->getService('054'),
  6. $this->getService('058'),
    Parameter #4 $scopeFactory of class PHPStan\Analyser\AnalyserResultFinalizer constructor expects PHPStan\Analyser\ScopeFactory, object given.
    Collective
  7. $this->getService('053'),
  8. true
  9. );
  10. }
  1. return new PHPStan\Analyser\AnalyserResultFinalizer(
  2. $this->getService('registry'),
  3. $this->getService('052'),
  4. $this->getService('054'),
  5. $this->getService('058'),
  6. $this->getService('053'),
    Parameter #5 $localIgnoresProcessor of class PHPStan\Analyser\AnalyserResultFinalizer constructor expects PHPStan\Analyser\LocalIgnoresProcessor, object given.
    Collective
  7. true
  8. );
  9. }
  1. public function createService051(): PHPStan\Analyser\FileAnalyser
  2. {
  3. return new PHPStan\Analyser\FileAnalyser(
  4. $this->getService('058'),
    Parameter #1 $scopeFactory of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Analyser\ScopeFactory, object given.
    Collective
  5. $this->getService('059'),
  6. $this->getService('defaultAnalysisParser'),
  7. $this->getService('071'),
  8. $this->getService('052'),
  9. $this->getService('054'),
  1. public function createService051(): PHPStan\Analyser\FileAnalyser
  2. {
  3. return new PHPStan\Analyser\FileAnalyser(
  4. $this->getService('058'),
  5. $this->getService('059'),
    Parameter #2 $nodeScopeResolver of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Analyser\NodeScopeResolver, object given.
    Collective
  6. $this->getService('defaultAnalysisParser'),
  7. $this->getService('071'),
  8. $this->getService('052'),
  9. $this->getService('054'),
  10. $this->getService('053')
  1. public function createService051(): PHPStan\Analyser\FileAnalyser
  2. {
  3. return new PHPStan\Analyser\FileAnalyser(
  4. $this->getService('058'),
  5. $this->getService('059'),
  6. $this->getService('defaultAnalysisParser'),
    Parameter #3 $parser of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  7. $this->getService('071'),
  8. $this->getService('052'),
  9. $this->getService('054'),
  10. $this->getService('053')
  11. );
  1. {
  2. return new PHPStan\Analyser\FileAnalyser(
  3. $this->getService('058'),
  4. $this->getService('059'),
  5. $this->getService('defaultAnalysisParser'),
  6. $this->getService('071'),
    Parameter #4 $dependencyResolver of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Dependency\DependencyResolver, object given.
    Collective
  7. $this->getService('052'),
  8. $this->getService('054'),
  9. $this->getService('053')
  10. );
  11. }
  1. return new PHPStan\Analyser\FileAnalyser(
  2. $this->getService('058'),
  3. $this->getService('059'),
  4. $this->getService('defaultAnalysisParser'),
  5. $this->getService('071'),
  6. $this->getService('052'),
    Parameter #5 $ignoreErrorExtensionProvider of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Analyser\IgnoreErrorExtensionProvider, object given.
    Collective
  7. $this->getService('054'),
  8. $this->getService('053')
  9. );
  10. }
  1. $this->getService('058'),
  2. $this->getService('059'),
  3. $this->getService('defaultAnalysisParser'),
  4. $this->getService('071'),
  5. $this->getService('052'),
  6. $this->getService('054'),
    Parameter #6 $ruleErrorTransformer of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Analyser\RuleErrorTransformer, object given.
    Collective
  7. $this->getService('053')
  8. );
  9. }
  1. $this->getService('059'),
  2. $this->getService('defaultAnalysisParser'),
  3. $this->getService('071'),
  4. $this->getService('052'),
  5. $this->getService('054'),
  6. $this->getService('053')
    Parameter #7 $localIgnoresProcessor of class PHPStan\Analyser\FileAnalyser constructor expects PHPStan\Analyser\LocalIgnoresProcessor, object given.
    Collective
  7. );
  8. }
  9. public function createService052(): PHPStan\Analyser\IgnoreErrorExtensionProvider
  1. }
  2. public function createService052(): PHPStan\Analyser\IgnoreErrorExtensionProvider
  3. {
  4. return new PHPStan\Analyser\IgnoreErrorExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Analyser\IgnoreErrorExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService053(): PHPStan\Analyser\LocalIgnoresProcessor
  7. {
  1. }
  2. public function createService055(): PHPStan\Analyser\Ignore\IgnoredErrorHelper
  3. {
  4. return new PHPStan\Analyser\Ignore\IgnoredErrorHelper($this->getService('085'), [], true);
    Parameter #1 $fileHelper of class PHPStan\Analyser\Ignore\IgnoredErrorHelper constructor expects PHPStan\File\FileHelper, object given.
    Collective
  5. }
  6. public function createService056(): PHPStan\Analyser\Ignore\IgnoreLexer
  7. {
  1. }
  2. public function createService057(): PHPStan\Analyser\LazyInternalScopeFactory
  3. {
  4. return new PHPStan\Analyser\LazyInternalScopeFactory($this->getService('075'));
    Parameter #1 $container of class PHPStan\Analyser\LazyInternalScopeFactory constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService058(): PHPStan\Analyser\ScopeFactory
  7. {
  1. }
  2. public function createService058(): PHPStan\Analyser\ScopeFactory
  3. {
  4. return new PHPStan\Analyser\ScopeFactory($this->getService('057'));
    Parameter #1 $internalScopeFactory of class PHPStan\Analyser\ScopeFactory constructor expects PHPStan\Analyser\InternalScopeFactory, object given.
    Collective
  5. }
  6. public function createService059(): PHPStan\Analyser\NodeScopeResolver
  7. {
  1. public function createService059(): PHPStan\Analyser\NodeScopeResolver
  2. {
  3. return new PHPStan\Analyser\NodeScopeResolver(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('096'),
  6. $this->getService('nodeScopeResolverReflector'),
  7. $this->getService('078'),
  8. $this->getService('080'),
  9. $this->getService('defaultAnalysisParser'),
  1. public function createService059(): PHPStan\Analyser\NodeScopeResolver
  2. {
  3. return new PHPStan\Analyser\NodeScopeResolver(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('096'),
    Parameter #2 $initializerExprTypeResolver of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  6. $this->getService('nodeScopeResolverReflector'),
  7. $this->getService('078'),
  8. $this->getService('080'),
  9. $this->getService('defaultAnalysisParser'),
  10. $this->getService('0185'),
  1. public function createService059(): PHPStan\Analyser\NodeScopeResolver
  2. {
  3. return new PHPStan\Analyser\NodeScopeResolver(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('096'),
  6. $this->getService('nodeScopeResolverReflector'),
    Parameter #3 $reflector of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\BetterReflection\Reflector\Reflector, object given.
    Collective
  7. $this->getService('078'),
  8. $this->getService('080'),
  9. $this->getService('defaultAnalysisParser'),
  10. $this->getService('0185'),
  11. $this->getService('stubPhpDocProvider'),
  1. {
  2. return new PHPStan\Analyser\NodeScopeResolver(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('096'),
  5. $this->getService('nodeScopeResolverReflector'),
  6. $this->getService('078'),
    Parameter #4 $classReflectionExtensionRegistryProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider, object given.
    Collective
  7. $this->getService('080'),
  8. $this->getService('defaultAnalysisParser'),
  9. $this->getService('0185'),
  10. $this->getService('stubPhpDocProvider'),
  11. $this->getService('026'),
  1. return new PHPStan\Analyser\NodeScopeResolver(
  2. $this->getService('reflectionProvider'),
  3. $this->getService('096'),
  4. $this->getService('nodeScopeResolverReflector'),
  5. $this->getService('078'),
  6. $this->getService('080'),
    Parameter #5 $parameterOutTypeExtensionProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider, object given.
    Collective
  7. $this->getService('defaultAnalysisParser'),
  8. $this->getService('0185'),
  9. $this->getService('stubPhpDocProvider'),
  10. $this->getService('026'),
  11. $this->getService('0128'),
  1. $this->getService('reflectionProvider'),
  2. $this->getService('096'),
  3. $this->getService('nodeScopeResolverReflector'),
  4. $this->getService('078'),
  5. $this->getService('080'),
  6. $this->getService('defaultAnalysisParser'),
    Parameter #6 $parser of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Parser\Parser, object given.
    Collective
  7. $this->getService('0185'),
  8. $this->getService('stubPhpDocProvider'),
  9. $this->getService('026'),
  10. $this->getService('0128'),
  11. $this->getService('0368'),
  1. $this->getService('096'),
  2. $this->getService('nodeScopeResolverReflector'),
  3. $this->getService('078'),
  4. $this->getService('080'),
  5. $this->getService('defaultAnalysisParser'),
  6. $this->getService('0185'),
    Parameter #7 $fileTypeMapper of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  7. $this->getService('stubPhpDocProvider'),
  8. $this->getService('026'),
  9. $this->getService('0128'),
  10. $this->getService('0368'),
  11. $this->getService('094'),
  1. $this->getService('nodeScopeResolverReflector'),
  2. $this->getService('078'),
  3. $this->getService('080'),
  4. $this->getService('defaultAnalysisParser'),
  5. $this->getService('0185'),
  6. $this->getService('stubPhpDocProvider'),
    Parameter #8 $stubPhpDocProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\PhpDoc\StubPhpDocProvider, object given.
    Collective
  7. $this->getService('026'),
  8. $this->getService('0128'),
  9. $this->getService('0368'),
  10. $this->getService('094'),
  11. $this->getService('036'),
  1. $this->getService('078'),
  2. $this->getService('080'),
  3. $this->getService('defaultAnalysisParser'),
  4. $this->getService('0185'),
  5. $this->getService('stubPhpDocProvider'),
  6. $this->getService('026'),
    Parameter #9 $phpVersion of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. $this->getService('0128'),
  8. $this->getService('0368'),
  9. $this->getService('094'),
  10. $this->getService('036'),
  11. $this->getService('085'),
  1. $this->getService('080'),
  2. $this->getService('defaultAnalysisParser'),
  3. $this->getService('0185'),
  4. $this->getService('stubPhpDocProvider'),
  5. $this->getService('026'),
  6. $this->getService('0128'),
    Parameter #10 $signatureMapProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Reflection\SignatureMap\SignatureMapProvider, object given.
    Collective
  7. $this->getService('0368'),
  8. $this->getService('094'),
  9. $this->getService('036'),
  10. $this->getService('085'),
  11. $this->getService('typeSpecifier'),
  1. $this->getService('defaultAnalysisParser'),
  2. $this->getService('0185'),
  3. $this->getService('stubPhpDocProvider'),
  4. $this->getService('026'),
  5. $this->getService('0128'),
  6. $this->getService('0368'),
    Parameter #11 $deprecationProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Reflection\Deprecation\DeprecationProvider, object given.
    Collective
  7. $this->getService('094'),
  8. $this->getService('036'),
  9. $this->getService('085'),
  10. $this->getService('typeSpecifier'),
  11. $this->getService('083'),
  1. $this->getService('0185'),
  2. $this->getService('stubPhpDocProvider'),
  3. $this->getService('026'),
  4. $this->getService('0128'),
  5. $this->getService('0368'),
  6. $this->getService('094'),
    Parameter #12 $attributeReflectionFactory of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Reflection\AttributeReflectionFactory, object given.
    Collective
  7. $this->getService('036'),
  8. $this->getService('085'),
  9. $this->getService('typeSpecifier'),
  10. $this->getService('083'),
  11. $this->getService('0178'),
  1. $this->getService('stubPhpDocProvider'),
  2. $this->getService('026'),
  3. $this->getService('0128'),
  4. $this->getService('0368'),
  5. $this->getService('094'),
  6. $this->getService('036'),
    Parameter #13 $phpDocInheritanceResolver of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\PhpDoc\PhpDocInheritanceResolver, object given.
    Collective
  7. $this->getService('085'),
  8. $this->getService('typeSpecifier'),
  9. $this->getService('083'),
  10. $this->getService('0178'),
  11. $this->getService('084'),
  1. $this->getService('026'),
  2. $this->getService('0128'),
  3. $this->getService('0368'),
  4. $this->getService('094'),
  5. $this->getService('036'),
  6. $this->getService('085'),
    Parameter #14 $fileHelper of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\File\FileHelper, object given.
    Collective
  7. $this->getService('typeSpecifier'),
  8. $this->getService('083'),
  9. $this->getService('0178'),
  10. $this->getService('084'),
  11. $this->getService('058'),
  1. $this->getService('0128'),
  2. $this->getService('0368'),
  3. $this->getService('094'),
  4. $this->getService('036'),
  5. $this->getService('085'),
  6. $this->getService('typeSpecifier'),
    Parameter #15 $typeSpecifier of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Analyser\TypeSpecifier, object given.
    Collective
  7. $this->getService('083'),
  8. $this->getService('0178'),
  9. $this->getService('084'),
  10. $this->getService('058'),
  11. true,
  1. $this->getService('0368'),
  2. $this->getService('094'),
  3. $this->getService('036'),
  4. $this->getService('085'),
  5. $this->getService('typeSpecifier'),
  6. $this->getService('083'),
    Parameter #16 $dynamicThrowTypeExtensionProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider, object given.
    Collective
  7. $this->getService('0178'),
  8. $this->getService('084'),
  9. $this->getService('058'),
  10. true,
  11. true,
  1. $this->getService('094'),
  2. $this->getService('036'),
  3. $this->getService('085'),
  4. $this->getService('typeSpecifier'),
  5. $this->getService('083'),
  6. $this->getService('0178'),
    Parameter #17 $readWritePropertiesExtensionProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider, object given.
    Collective
  7. $this->getService('084'),
  8. $this->getService('058'),
  9. true,
  10. true,
  11. true,
  1. $this->getService('036'),
  2. $this->getService('085'),
  3. $this->getService('typeSpecifier'),
  4. $this->getService('083'),
  5. $this->getService('0178'),
  6. $this->getService('084'),
    Parameter #18 $parameterClosureTypeExtensionProvider of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider, object given.
    Collective
  7. $this->getService('058'),
  8. true,
  9. true,
  10. true,
  11. [],
  1. $this->getService('085'),
  2. $this->getService('typeSpecifier'),
  3. $this->getService('083'),
  4. $this->getService('0178'),
  5. $this->getService('084'),
  6. $this->getService('058'),
    Parameter #19 $scopeFactory of class PHPStan\Analyser\NodeScopeResolver constructor expects PHPStan\Analyser\ScopeFactory, object given.
    Collective
  7. true,
  8. true,
  9. true,
  10. [],
  11. [],
  1. }
  2. public function createService061(): PHPStan\Analyser\ConstantResolverFactory
  3. {
  4. return new PHPStan\Analyser\ConstantResolverFactory($this->getService('0122'), $this->getService('075'));
    Parameter #2 $container of class PHPStan\Analyser\ConstantResolverFactory constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService062(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory
  7. {
  1. }
  2. public function createService061(): PHPStan\Analyser\ConstantResolverFactory
  3. {
  4. return new PHPStan\Analyser\ConstantResolverFactory($this->getService('0122'), $this->getService('075'));
    Parameter #1 $reflectionProviderProvider of class PHPStan\Analyser\ConstantResolverFactory constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  5. }
  6. public function createService062(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory
  7. {
  1. public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager
  2. {
  3. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  4. $this->container->getService('075'),
    Parameter #1 $container of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects PHPStan\DependencyInjection\Container, mixed given.
    Collective
  5. $this->container->getService('072'),
  6. $this->container->getService('fileFinderScan'),
  7. $this->container->getService('reflectionProvider'),
  8. $this->container->getService('045'),
  9. $this->container->getService('085'),
  1. public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager
  2. {
  3. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  4. $this->container->getService('075'),
  5. $this->container->getService('072'),
    Parameter #2 $exportedNodeFetcher of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects PHPStan\Dependency\ExportedNodeFetcher, mixed given.
    Collective
  6. $this->container->getService('fileFinderScan'),
  7. $this->container->getService('reflectionProvider'),
  8. $this->container->getService('045'),
  9. $this->container->getService('085'),
  10. '/app/var/phpstan/resultCache.php',
  1. public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager
  2. {
  3. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  4. $this->container->getService('075'),
  5. $this->container->getService('072'),
  6. $this->container->getService('fileFinderScan'),
    Parameter #3 $scanFileFinder of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects PHPStan\File\FileFinder, mixed given.
    Collective
  7. $this->container->getService('reflectionProvider'),
  8. $this->container->getService('045'),
  9. $this->container->getService('085'),
  10. '/app/var/phpstan/resultCache.php',
  11. $this->container->getParameter('analysedPaths'),
  1. {
  2. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  3. $this->container->getService('075'),
  4. $this->container->getService('072'),
  5. $this->container->getService('fileFinderScan'),
  6. $this->container->getService('reflectionProvider'),
    Parameter #4 $reflectionProvider of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects PHPStan\Reflection\ReflectionProvider, mixed given.
    Collective
  7. $this->container->getService('045'),
  8. $this->container->getService('085'),
  9. '/app/var/phpstan/resultCache.php',
  10. $this->container->getParameter('analysedPaths'),
  11. $this->container->getParameter('analysedPathsFromConfig'),
  1. return new PHPStan\Analyser\ResultCache\ResultCacheManager(
  2. $this->container->getService('075'),
  3. $this->container->getService('072'),
  4. $this->container->getService('fileFinderScan'),
  5. $this->container->getService('reflectionProvider'),
  6. $this->container->getService('045'),
    Parameter #5 $stubFilesProvider of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects PHPStan\PhpDoc\StubFilesProvider, mixed given.
    Collective
  7. $this->container->getService('085'),
  8. '/app/var/phpstan/resultCache.php',
  9. $this->container->getParameter('analysedPaths'),
  10. $this->container->getParameter('analysedPathsFromConfig'),
  11. ['/app'],
  1. $this->container->getService('075'),
  2. $this->container->getService('072'),
  3. $this->container->getService('fileFinderScan'),
  4. $this->container->getService('reflectionProvider'),
  5. $this->container->getService('045'),
  6. $this->container->getService('085'),
    Parameter #6 $fileHelper of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects PHPStan\File\FileHelper, mixed given.
    Collective
  7. '/app/var/phpstan/resultCache.php',
  8. $this->container->getParameter('analysedPaths'),
  9. $this->container->getParameter('analysedPathsFromConfig'),
  10. ['/app'],
  11. 'max',
  1. $this->container->getService('fileFinderScan'),
  2. $this->container->getService('reflectionProvider'),
  3. $this->container->getService('045'),
  4. $this->container->getService('085'),
  5. '/app/var/phpstan/resultCache.php',
  6. $this->container->getParameter('analysedPaths'),
    Parameter #8 $analysedPaths of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects array<string>, mixed given.
    Collective
  7. $this->container->getParameter('analysedPathsFromConfig'),
  8. ['/app'],
  9. 'max',
  10. null,
  11. [
  1. $this->container->getService('reflectionProvider'),
  2. $this->container->getService('045'),
  3. $this->container->getService('085'),
  4. '/app/var/phpstan/resultCache.php',
  5. $this->container->getParameter('analysedPaths'),
  6. $this->container->getParameter('analysedPathsFromConfig'),
    Parameter #9 $analysedPathsFromConfig of class PHPStan\Analyser\ResultCache\ResultCacheManager constructor expects array<string>, mixed given.
    Collective
  7. ['/app'],
  8. 'max',
  9. null,
  10. [
  11. 'phar:///opt/tools/phpstan.phar/stubs/runtime/ReflectionUnionType.php',
  1. }
  2. public function createService064(): PHPStan\Analyser\RicherScopeGetTypeHelper
  3. {
  4. return new PHPStan\Analyser\RicherScopeGetTypeHelper($this->getService('096'));
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Analyser\RicherScopeGetTypeHelper constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. }
  6. public function createService065(): PHPStan\Cache\Cache
  7. {
  1. }
  2. public function createService065(): PHPStan\Cache\Cache
  3. {
  4. return new PHPStan\Cache\Cache($this->getService('cacheStorage'));
    Parameter #1 $storage of class PHPStan\Cache\Cache constructor expects PHPStan\Cache\CacheStorage, object given.
    Collective
  5. }
  6. public function createService066(): PHPStan\Collectors\Registry
  7. {
  1. }
  2. public function createService067(): PHPStan\Collectors\RegistryFactory
  3. {
  4. return new PHPStan\Collectors\RegistryFactory($this->getService('075'));
    Parameter #1 $container of class PHPStan\Collectors\RegistryFactory constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService068(): PHPStan\Command\AnalyseApplication
  7. {
  1. public function createService068(): PHPStan\Command\AnalyseApplication
  2. {
  3. return new PHPStan\Command\AnalyseApplication(
  4. $this->getService('069'),
    Parameter #1 $analyserRunner of class PHPStan\Command\AnalyseApplication constructor expects PHPStan\Command\AnalyserRunner, object given.
    Collective
  5. $this->getService('050'),
  6. $this->getService('043'),
  7. $this->getService('062'),
  8. $this->getService('055'),
  9. $this->getService('045')
  1. public function createService068(): PHPStan\Command\AnalyseApplication
  2. {
  3. return new PHPStan\Command\AnalyseApplication(
  4. $this->getService('069'),
  5. $this->getService('050'),
    Parameter #2 $analyserResultFinalizer of class PHPStan\Command\AnalyseApplication constructor expects PHPStan\Analyser\AnalyserResultFinalizer, object given.
    Collective
  6. $this->getService('043'),
  7. $this->getService('062'),
  8. $this->getService('055'),
  9. $this->getService('045')
  10. );
  1. public function createService068(): PHPStan\Command\AnalyseApplication
  2. {
  3. return new PHPStan\Command\AnalyseApplication(
  4. $this->getService('069'),
  5. $this->getService('050'),
  6. $this->getService('043'),
    Parameter #3 $stubValidator of class PHPStan\Command\AnalyseApplication constructor expects PHPStan\PhpDoc\StubValidator, object given.
    Collective
  7. $this->getService('062'),
  8. $this->getService('055'),
  9. $this->getService('045')
  10. );
  11. }
  1. {
  2. return new PHPStan\Command\AnalyseApplication(
  3. $this->getService('069'),
  4. $this->getService('050'),
  5. $this->getService('043'),
  6. $this->getService('062'),
    Parameter #4 $resultCacheManagerFactory of class PHPStan\Command\AnalyseApplication constructor expects PHPStan\Analyser\ResultCache\ResultCacheManagerFactory, object given.
    Collective
  7. $this->getService('055'),
  8. $this->getService('045')
  9. );
  10. }
  1. return new PHPStan\Command\AnalyseApplication(
  2. $this->getService('069'),
  3. $this->getService('050'),
  4. $this->getService('043'),
  5. $this->getService('062'),
  6. $this->getService('055'),
    Parameter #5 $ignoredErrorHelper of class PHPStan\Command\AnalyseApplication constructor expects PHPStan\Analyser\Ignore\IgnoredErrorHelper, object given.
    Collective
  7. $this->getService('045')
  8. );
  9. }
  1. $this->getService('069'),
  2. $this->getService('050'),
  3. $this->getService('043'),
  4. $this->getService('062'),
  5. $this->getService('055'),
  6. $this->getService('045')
    Parameter #6 $stubFilesProvider of class PHPStan\Command\AnalyseApplication constructor expects PHPStan\PhpDoc\StubFilesProvider, object given.
    Collective
  7. );
  8. }
  9. public function createService069(): PHPStan\Command\AnalyserRunner
  1. public function createService069(): PHPStan\Command\AnalyserRunner
  2. {
  3. return new PHPStan\Command\AnalyserRunner(
  4. $this->getService('092'),
    Parameter #1 $scheduler of class PHPStan\Command\AnalyserRunner constructor expects PHPStan\Parallel\Scheduler, object given.
    Collective
  5. $this->getService('049'),
  6. $this->getService('091'),
  7. $this->getService('093')
  8. );
  9. }
  1. public function createService069(): PHPStan\Command\AnalyserRunner
  2. {
  3. return new PHPStan\Command\AnalyserRunner(
  4. $this->getService('092'),
  5. $this->getService('049'),
    Parameter #2 $analyser of class PHPStan\Command\AnalyserRunner constructor expects PHPStan\Analyser\Analyser, object given.
    Collective
  6. $this->getService('091'),
  7. $this->getService('093')
  8. );
  9. }
  1. public function createService069(): PHPStan\Command\AnalyserRunner
  2. {
  3. return new PHPStan\Command\AnalyserRunner(
  4. $this->getService('092'),
  5. $this->getService('049'),
  6. $this->getService('091'),
    Parameter #3 $parallelAnalyser of class PHPStan\Command\AnalyserRunner constructor expects PHPStan\Parallel\ParallelAnalyser, object given.
    Collective
  7. $this->getService('093')
  8. );
  9. }
  1. {
  2. return new PHPStan\Command\AnalyserRunner(
  3. $this->getService('092'),
  4. $this->getService('049'),
  5. $this->getService('091'),
  6. $this->getService('093')
    Parameter #4 $cpuCoreCounter of class PHPStan\Command\AnalyserRunner constructor expects PHPStan\Process\CpuCoreCounter, object given.
    Collective
  7. );
  8. }
  9. public function createService070(): PHPStan\Command\FixerApplication
  1. public function createService070(): PHPStan\Command\FixerApplication
  2. {
  3. return new PHPStan\Command\FixerApplication(
  4. $this->getService('088'),
    Parameter #1 $fileMonitor of class PHPStan\Command\FixerApplication constructor expects PHPStan\File\FileMonitor, object given.
    Collective
  5. $this->getService('055'),
  6. $this->getService('045'),
  7. $this->getParameter('analysedPaths'),
  8. '/app',
  9. ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer',
  1. public function createService070(): PHPStan\Command\FixerApplication
  2. {
  3. return new PHPStan\Command\FixerApplication(
  4. $this->getService('088'),
  5. $this->getService('055'),
    Parameter #2 $ignoredErrorHelper of class PHPStan\Command\FixerApplication constructor expects PHPStan\Analyser\Ignore\IgnoredErrorHelper, object given.
    Collective
  6. $this->getService('045'),
  7. $this->getParameter('analysedPaths'),
  8. '/app',
  9. ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer',
  10. ['1.1.1.2'],
  1. public function createService070(): PHPStan\Command\FixerApplication
  2. {
  3. return new PHPStan\Command\FixerApplication(
  4. $this->getService('088'),
  5. $this->getService('055'),
  6. $this->getService('045'),
    Parameter #3 $stubFilesProvider of class PHPStan\Command\FixerApplication constructor expects PHPStan\PhpDoc\StubFilesProvider, object given.
    Collective
  7. $this->getParameter('analysedPaths'),
  8. '/app',
  9. ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer',
  10. ['1.1.1.2'],
  11. ['/app'],
  1. {
  2. return new PHPStan\Command\FixerApplication(
  3. $this->getService('088'),
  4. $this->getService('055'),
  5. $this->getService('045'),
  6. $this->getParameter('analysedPaths'),
    Parameter #4 $analysedPaths of class PHPStan\Command\FixerApplication constructor expects array<string>, mixed given.
    Collective
  7. '/app',
  8. ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer',
  9. ['1.1.1.2'],
  10. ['/app'],
  11. [
  1. public function createService071(): PHPStan\Dependency\DependencyResolver
  2. {
  3. return new PHPStan\Dependency\DependencyResolver(
  4. $this->getService('085'),
    Parameter #1 $fileHelper of class PHPStan\Dependency\DependencyResolver constructor expects PHPStan\File\FileHelper, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('073'),
  7. $this->getService('0185')
  8. );
  9. }
  1. public function createService071(): PHPStan\Dependency\DependencyResolver
  2. {
  3. return new PHPStan\Dependency\DependencyResolver(
  4. $this->getService('085'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Dependency\DependencyResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('073'),
  7. $this->getService('0185')
  8. );
  9. }
  1. public function createService071(): PHPStan\Dependency\DependencyResolver
  2. {
  3. return new PHPStan\Dependency\DependencyResolver(
  4. $this->getService('085'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('073'),
    Parameter #3 $exportedNodeResolver of class PHPStan\Dependency\DependencyResolver constructor expects PHPStan\Dependency\ExportedNodeResolver, object given.
    Collective
  7. $this->getService('0185')
  8. );
  9. }
  1. {
  2. return new PHPStan\Dependency\DependencyResolver(
  3. $this->getService('085'),
  4. $this->getService('reflectionProvider'),
  5. $this->getService('073'),
  6. $this->getService('0185')
    Parameter #4 $fileTypeMapper of class PHPStan\Dependency\DependencyResolver constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  7. );
  8. }
  9. public function createService072(): PHPStan\Dependency\ExportedNodeFetcher
  1. }
  2. public function createService072(): PHPStan\Dependency\ExportedNodeFetcher
  3. {
  4. return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('defaultAnalysisParser'), $this->getService('074'));
    Parameter #1 $parser of class PHPStan\Dependency\ExportedNodeFetcher constructor expects PHPStan\Parser\Parser, object given.
    Collective
  5. }
  6. public function createService073(): PHPStan\Dependency\ExportedNodeResolver
  7. {
  1. }
  2. public function createService072(): PHPStan\Dependency\ExportedNodeFetcher
  3. {
  4. return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('defaultAnalysisParser'), $this->getService('074'));
    Parameter #2 $visitor of class PHPStan\Dependency\ExportedNodeFetcher constructor expects PHPStan\Dependency\ExportedNodeVisitor, object given.
    Collective
  5. }
  6. public function createService073(): PHPStan\Dependency\ExportedNodeResolver
  7. {
  1. public function createService073(): PHPStan\Dependency\ExportedNodeResolver
  2. {
  3. return new PHPStan\Dependency\ExportedNodeResolver(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Dependency\ExportedNodeResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0185'),
  6. $this->getService('023')
  7. );
  8. }
  1. public function createService073(): PHPStan\Dependency\ExportedNodeResolver
  2. {
  3. return new PHPStan\Dependency\ExportedNodeResolver(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0185'),
    Parameter #2 $fileTypeMapper of class PHPStan\Dependency\ExportedNodeResolver constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  6. $this->getService('023')
  7. );
  8. }
  1. public function createService073(): PHPStan\Dependency\ExportedNodeResolver
  2. {
  3. return new PHPStan\Dependency\ExportedNodeResolver(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0185'),
  6. $this->getService('023')
    Parameter #3 $exprPrinter of class PHPStan\Dependency\ExportedNodeResolver constructor expects PHPStan\Node\Printer\ExprPrinter, object given.
    Collective
  7. );
  8. }
  9. public function createService074(): PHPStan\Dependency\ExportedNodeVisitor
  1. }
  2. public function createService074(): PHPStan\Dependency\ExportedNodeVisitor
  3. {
  4. return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('073'));
    Parameter #1 $exportedNodeResolver of class PHPStan\Dependency\ExportedNodeVisitor constructor expects PHPStan\Dependency\ExportedNodeResolver, object given.
    Collective
  5. }
  6. public function createService075(): PHPStan\DependencyInjection\Container
  7. {
  1. }
  2. public function createService075(): PHPStan\DependencyInjection\Container
  3. {
  4. return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('076'));
    Parameter #1 $originalContainer of class PHPStan\DependencyInjection\MemoizingContainer constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService076(): PHPStan\DependencyInjection\Nette\NetteContainer
  7. {
  1. {
  2. return new PHPStan\DependencyInjection\DerivativeContainerFactory(
  3. '/app',
  4. '/app/var/phpstan',
  5. ['phar:///opt/tools/phpstan.phar/conf/config.levelmax.neon', '/app/phpstan.insight.neon'],
  6. $this->getParameter('analysedPaths'),
    Parameter #4 $analysedPaths of class PHPStan\DependencyInjection\DerivativeContainerFactory constructor expects array<string>, mixed given.
    Collective
  7. ['/app'],
  8. $this->getParameter('analysedPathsFromConfig'),
  9. 'max',
  10. null,
  11. null,
  1. '/app',
  2. '/app/var/phpstan',
  3. ['phar:///opt/tools/phpstan.phar/conf/config.levelmax.neon', '/app/phpstan.insight.neon'],
  4. $this->getParameter('analysedPaths'),
  5. ['/app'],
  6. $this->getParameter('analysedPathsFromConfig'),
    Parameter #6 $analysedPathsFromConfig of class PHPStan\DependencyInjection\DerivativeContainerFactory constructor expects array<string>, mixed given.
    Collective
  7. 'max',
  8. null,
  9. null,
  10. $this->getParameter('singleReflectionFile'),
  11. $this->getParameter('singleReflectionInsteadOfFile')
  1. ['/app'],
  2. $this->getParameter('analysedPathsFromConfig'),
  3. 'max',
  4. null,
  5. null,
  6. $this->getParameter('singleReflectionFile'),
    Parameter #10 $singleReflectionFile of class PHPStan\DependencyInjection\DerivativeContainerFactory constructor expects string|null, mixed given.
    Collective
  7. $this->getParameter('singleReflectionInsteadOfFile')
  8. );
  9. }
  1. $this->getParameter('analysedPathsFromConfig'),
  2. 'max',
  3. null,
  4. null,
  5. $this->getParameter('singleReflectionFile'),
  6. $this->getParameter('singleReflectionInsteadOfFile')
    Parameter #11 $singleReflectionInsteadOfFile of class PHPStan\DependencyInjection\DerivativeContainerFactory constructor expects string|null, mixed given.
    Collective
  7. );
  8. }
  9. public function createService078(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider
  1. }
  2. public function createService078(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider
  3. {
  4. return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService079(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider
  7. {
  1. }
  2. public function createService079(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider
  3. {
  4. return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService080(): PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider
  7. {
  1. }
  2. public function createService080(): PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider
  3. {
  4. return new PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService081(): PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider
  7. {
  1. }
  2. public function createService081(): PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider
  3. {
  4. return new PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService082(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider
  7. {
  1. }
  2. public function createService082(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider
  3. {
  4. return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService083(): PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider
  7. {
  1. }
  2. public function createService083(): PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider
  3. {
  4. return new PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService084(): PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider
  7. {
  1. }
  2. public function createService084(): PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider
  3. {
  4. return new PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService085(): PHPStan\File\FileHelper
  7. {
  1. public function createService086(): PHPStan\File\FileExcluderFactory
  2. {
  3. return new PHPStan\File\FileExcluderFactory(
  4. $this->getService('087'),
    Parameter #1 $fileExcluderRawFactory of class PHPStan\File\FileExcluderFactory constructor expects PHPStan\File\FileExcluderRawFactory, object given.
    Collective
  5. [
  6. 'analyseAndScan' => [
  7. '*/test/*',
  8. '*/Test/*',
  9. '*/tests/*',
  1. }
  2. public function create(array $analyseExcludes): PHPStan\File\FileExcluder
  3. {
  4. return new PHPStan\File\FileExcluder($this->container->getService('085'), $analyseExcludes);
    Parameter #1 $fileHelper of class PHPStan\File\FileExcluder constructor expects PHPStan\File\FileHelper, mixed given.
    Collective
  5. }
  6. };
  7. }
  1. public function createService088(): PHPStan\File\FileMonitor
  2. {
  3. return new PHPStan\File\FileMonitor(
  4. $this->getService('fileFinderAnalyse'),
    Parameter #1 $analyseFileFinder of class PHPStan\File\FileMonitor constructor expects PHPStan\File\FileFinder, object given.
    Collective
  5. $this->getService('fileFinderScan'),
  6. $this->getParameter('analysedPaths'),
  7. $this->getParameter('analysedPathsFromConfig'),
  8. [],
  9. []
  1. public function createService088(): PHPStan\File\FileMonitor
  2. {
  3. return new PHPStan\File\FileMonitor(
  4. $this->getService('fileFinderAnalyse'),
  5. $this->getService('fileFinderScan'),
    Parameter #2 $scanFileFinder of class PHPStan\File\FileMonitor constructor expects PHPStan\File\FileFinder, object given.
    Collective
  6. $this->getParameter('analysedPaths'),
  7. $this->getParameter('analysedPathsFromConfig'),
  8. [],
  9. []
  10. );
  1. public function createService088(): PHPStan\File\FileMonitor
  2. {
  3. return new PHPStan\File\FileMonitor(
  4. $this->getService('fileFinderAnalyse'),
  5. $this->getService('fileFinderScan'),
  6. $this->getParameter('analysedPaths'),
    Parameter #3 $analysedPaths of class PHPStan\File\FileMonitor constructor expects array<string>, mixed given.
    Collective
  7. $this->getParameter('analysedPathsFromConfig'),
  8. [],
  9. []
  10. );
  11. }
  1. {
  2. return new PHPStan\File\FileMonitor(
  3. $this->getService('fileFinderAnalyse'),
  4. $this->getService('fileFinderScan'),
  5. $this->getParameter('analysedPaths'),
  6. $this->getParameter('analysedPathsFromConfig'),
    Parameter #4 $analysedPathsFromConfig of class PHPStan\File\FileMonitor constructor expects array<string>, mixed given.
    Collective
  7. [],
  8. []
  9. );
  10. }
  1. }
  2. public function createService094(): PHPStan\Reflection\AttributeReflectionFactory
  3. {
  4. return new PHPStan\Reflection\AttributeReflectionFactory($this->getService('096'), $this->getService('0122'));
    Parameter #2 $reflectionProviderProvider of class PHPStan\Reflection\AttributeReflectionFactory constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  5. }
  6. public function createService095(): PHPStan\Reflection\FunctionReflectionFactory
  7. {
  1. }
  2. public function createService094(): PHPStan\Reflection\AttributeReflectionFactory
  3. {
  4. return new PHPStan\Reflection\AttributeReflectionFactory($this->getService('096'), $this->getService('0122'));
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Reflection\AttributeReflectionFactory constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. }
  6. public function createService095(): PHPStan\Reflection\FunctionReflectionFactory
  7. {
  1. array $phpDocParameterImmediatelyInvokedCallable,
  2. array $phpDocParameterClosureThisTypes,
  3. array $attributes
  4. ): PHPStan\Reflection\Php\PhpFunctionReflection {
  5. return new PHPStan\Reflection\Php\PhpFunctionReflection(
  6. $this->container->getService('096'),
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Reflection\Php\PhpFunctionReflection constructor expects PHPStan\Reflection\InitializerExprTypeResolver, mixed given.
    Collective
  7. $reflection,
  8. $this->container->getService('defaultAnalysisParser'),
  9. $this->container->getService('094'),
  10. $templateTypeMap,
  11. $phpDocParameterTypes,
  1. array $attributes
  2. ): PHPStan\Reflection\Php\PhpFunctionReflection {
  3. return new PHPStan\Reflection\Php\PhpFunctionReflection(
  4. $this->container->getService('096'),
  5. $reflection,
  6. $this->container->getService('defaultAnalysisParser'),
    Parameter #3 $parser of class PHPStan\Reflection\Php\PhpFunctionReflection constructor expects PHPStan\Parser\Parser, mixed given.
    Collective
  7. $this->container->getService('094'),
  8. $templateTypeMap,
  9. $phpDocParameterTypes,
  10. $phpDocReturnType,
  11. $phpDocThrowType,
  1. ): PHPStan\Reflection\Php\PhpFunctionReflection {
  2. return new PHPStan\Reflection\Php\PhpFunctionReflection(
  3. $this->container->getService('096'),
  4. $reflection,
  5. $this->container->getService('defaultAnalysisParser'),
  6. $this->container->getService('094'),
    Parameter #4 $attributeReflectionFactory of class PHPStan\Reflection\Php\PhpFunctionReflection constructor expects PHPStan\Reflection\AttributeReflectionFactory, mixed given.
    Collective
  7. $templateTypeMap,
  8. $phpDocParameterTypes,
  9. $phpDocReturnType,
  10. $phpDocThrowType,
  11. $deprecatedDescription,
  1. public function createService096(): PHPStan\Reflection\InitializerExprTypeResolver
  2. {
  3. return new PHPStan\Reflection\InitializerExprTypeResolver(
  4. $this->getService('060'),
    Parameter #1 $constantResolver of class PHPStan\Reflection\InitializerExprTypeResolver constructor expects PHPStan\Analyser\ConstantResolver, object given.
    Collective
  5. $this->getService('0122'),
  6. $this->getService('026'),
  7. $this->getService('082'),
  8. $this->getService('0360'),
  9. false
  1. public function createService096(): PHPStan\Reflection\InitializerExprTypeResolver
  2. {
  3. return new PHPStan\Reflection\InitializerExprTypeResolver(
  4. $this->getService('060'),
  5. $this->getService('0122'),
    Parameter #2 $reflectionProviderProvider of class PHPStan\Reflection\InitializerExprTypeResolver constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  6. $this->getService('026'),
  7. $this->getService('082'),
  8. $this->getService('0360'),
  9. false
  10. );
  1. public function createService096(): PHPStan\Reflection\InitializerExprTypeResolver
  2. {
  3. return new PHPStan\Reflection\InitializerExprTypeResolver(
  4. $this->getService('060'),
  5. $this->getService('0122'),
  6. $this->getService('026'),
    Parameter #3 $phpVersion of class PHPStan\Reflection\InitializerExprTypeResolver constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. $this->getService('082'),
  8. $this->getService('0360'),
  9. false
  10. );
  11. }
  1. {
  2. return new PHPStan\Reflection\InitializerExprTypeResolver(
  3. $this->getService('060'),
  4. $this->getService('0122'),
  5. $this->getService('026'),
  6. $this->getService('082'),
    Parameter #4 $operatorTypeSpecifyingExtensionRegistryProvider of class PHPStan\Reflection\InitializerExprTypeResolver constructor expects PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider, object given.
    Collective
  7. $this->getService('0360'),
  8. false
  9. );
  10. }
  1. return new PHPStan\Reflection\InitializerExprTypeResolver(
  2. $this->getService('060'),
  3. $this->getService('0122'),
  4. $this->getService('026'),
  5. $this->getService('082'),
  6. $this->getService('0360'),
    Parameter #5 $oversizedArrayBuilder of class PHPStan\Reflection\InitializerExprTypeResolver constructor expects PHPStan\Type\Constant\OversizedArrayBuilder, object given.
    Collective
  7. false
  8. );
  9. }
  1. public function createService0100(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher(
  4. $this->getService('099'),
    Parameter #1 $cachingVisitor of class PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor, object given.
    Collective
  5. $this->getService('defaultAnalysisParser')
  6. );
  7. }
  1. public function createService0100(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher(
  4. $this->getService('099'),
  5. $this->getService('defaultAnalysisParser')
    Parameter #2 $parser of class PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher constructor expects PHPStan\Parser\Parser, object given.
    Collective
  6. );
  7. }
  8. public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker
  1. public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker(
  4. $this->getService('0103'),
    Parameter #1 $optimizedDirectorySourceLocatorRepository of class PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository, object given.
    Collective
  5. $this->getService('0104'),
  6. $this->getService('0102'),
  7. $this->getService('026')
  8. );
  9. }
  1. public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker(
  4. $this->getService('0103'),
  5. $this->getService('0104'),
    Parameter #2 $optimizedPsrAutoloaderLocatorFactory of class PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory, object given.
    Collective
  6. $this->getService('0102'),
  7. $this->getService('026')
  8. );
  9. }
  1. public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker(
  4. $this->getService('0103'),
  5. $this->getService('0104'),
  6. $this->getService('0102'),
    Parameter #3 $optimizedDirectorySourceLocatorFactory of class PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory, object given.
    Collective
  7. $this->getService('026')
  8. );
  9. }
  1. {
  2. return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker(
  3. $this->getService('0103'),
  4. $this->getService('0104'),
  5. $this->getService('0102'),
  6. $this->getService('026')
    Parameter #4 $phpVersion of class PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. );
  8. }
  9. public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory
  1. public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory(
  4. $this->getService('0100'),
    Parameter #1 $fileNodesFetcher of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher, object given.
    Collective
  5. $this->getService('fileFinderScan'),
  6. $this->getService('026'),
  7. $this->getService('065')
  8. );
  9. }
  1. public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory(
  4. $this->getService('0100'),
  5. $this->getService('fileFinderScan'),
    Parameter #2 $fileFinder of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory constructor expects PHPStan\File\FileFinder, object given.
    Collective
  6. $this->getService('026'),
  7. $this->getService('065')
  8. );
  9. }
  1. public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory(
  4. $this->getService('0100'),
  5. $this->getService('fileFinderScan'),
  6. $this->getService('026'),
    Parameter #3 $phpVersion of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. $this->getService('065')
  8. );
  9. }
  1. {
  2. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory(
  3. $this->getService('0100'),
  4. $this->getService('fileFinderScan'),
  5. $this->getService('026'),
  6. $this->getService('065')
    Parameter #4 $cache of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory constructor expects PHPStan\Cache\Cache, object given.
    Collective
  7. );
  8. }
  9. public function createService0103(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository
  1. }
  2. public function createService0103(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository
  3. {
  4. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('0102'));
    Parameter #1 $factory of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory, object given.
    Collective
  5. }
  6. public function createService0104(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory
  7. {
  1. }
  2. public function create(PHPStan\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator
  3. {
  4. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('0106'));
    Parameter #2 $optimizedSingleFileSourceLocatorRepository of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository, mixed given.
    Collective
  5. }
  6. };
  7. }
  1. public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator(
  4. $this->container->getService('0100'),
    Parameter #1 $fileNodesFetcher of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher, mixed given.
    Collective
  5. $fileName
  6. );
  7. }
  8. };
  9. }
  1. }
  2. public function createService0106(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository
  3. {
  4. return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('0105'));
    Parameter #1 $factory of class PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory, object given.
    Collective
  5. }
  6. public function createService0107(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension
  7. {
  1. public function createService0108(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension(
  4. $this->getService('026'),
    Parameter #1 $phpVersion of class PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. 'PHPStan\BetterReflection\Reflection\Adapter\ReflectionEnumUnitCase'
  6. );
  7. }
  1. }
  2. public function createService0109(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0110(): PHPStan\Reflection\ConstructorsHelper
  7. {
  1. }
  2. public function createService0110(): PHPStan\Reflection\ConstructorsHelper
  3. {
  4. return new PHPStan\Reflection\ConstructorsHelper($this->getService('075'), []);
    Parameter #1 $container of class PHPStan\Reflection\ConstructorsHelper constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0111(): PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension
  7. {
  1. public function createService0115(): PHPStan\Reflection\Php\PhpClassReflectionExtension
  2. {
  3. return new PHPStan\Reflection\Php\PhpClassReflectionExtension(
  4. $this->getService('058'),
    Parameter #1 $scopeFactory of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Analyser\ScopeFactory, object given.
    Collective
  5. $this->getService('059'),
  6. $this->getService('0116'),
  7. $this->getService('036'),
  8. $this->getService('0368'),
  9. $this->getService('097'),
  1. public function createService0115(): PHPStan\Reflection\Php\PhpClassReflectionExtension
  2. {
  3. return new PHPStan\Reflection\Php\PhpClassReflectionExtension(
  4. $this->getService('058'),
  5. $this->getService('059'),
    Parameter #2 $nodeScopeResolver of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Analyser\NodeScopeResolver, object given.
    Collective
  6. $this->getService('0116'),
  7. $this->getService('036'),
  8. $this->getService('0368'),
  9. $this->getService('097'),
  10. $this->getService('098'),
  1. public function createService0115(): PHPStan\Reflection\Php\PhpClassReflectionExtension
  2. {
  3. return new PHPStan\Reflection\Php\PhpClassReflectionExtension(
  4. $this->getService('058'),
  5. $this->getService('059'),
  6. $this->getService('0116'),
    Parameter #3 $methodReflectionFactory of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\Php\PhpMethodReflectionFactory, object given.
    Collective
  7. $this->getService('036'),
  8. $this->getService('0368'),
  9. $this->getService('097'),
  10. $this->getService('098'),
  11. $this->getService('0128'),
  1. {
  2. return new PHPStan\Reflection\Php\PhpClassReflectionExtension(
  3. $this->getService('058'),
  4. $this->getService('059'),
  5. $this->getService('0116'),
  6. $this->getService('036'),
    Parameter #4 $phpDocInheritanceResolver of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\PhpDoc\PhpDocInheritanceResolver, object given.
    Collective
  7. $this->getService('0368'),
  8. $this->getService('097'),
  9. $this->getService('098'),
  10. $this->getService('0128'),
  11. $this->getService('defaultAnalysisParser'),
  1. return new PHPStan\Reflection\Php\PhpClassReflectionExtension(
  2. $this->getService('058'),
  3. $this->getService('059'),
  4. $this->getService('0116'),
  5. $this->getService('036'),
  6. $this->getService('0368'),
    Parameter #5 $deprecationProvider of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\Deprecation\DeprecationProvider, object given.
    Collective
  7. $this->getService('097'),
  8. $this->getService('098'),
  9. $this->getService('0128'),
  10. $this->getService('defaultAnalysisParser'),
  11. $this->getService('stubPhpDocProvider'),
  1. $this->getService('058'),
  2. $this->getService('059'),
  3. $this->getService('0116'),
  4. $this->getService('036'),
  5. $this->getService('0368'),
  6. $this->getService('097'),
    Parameter #6 $annotationsMethodsClassReflectionExtension of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension, object given.
    Collective
  7. $this->getService('098'),
  8. $this->getService('0128'),
  9. $this->getService('defaultAnalysisParser'),
  10. $this->getService('stubPhpDocProvider'),
  11. $this->getService('0122'),
  1. $this->getService('059'),
  2. $this->getService('0116'),
  3. $this->getService('036'),
  4. $this->getService('0368'),
  5. $this->getService('097'),
  6. $this->getService('098'),
    Parameter #7 $annotationsPropertiesClassReflectionExtension of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension, object given.
    Collective
  7. $this->getService('0128'),
  8. $this->getService('defaultAnalysisParser'),
  9. $this->getService('stubPhpDocProvider'),
  10. $this->getService('0122'),
  11. $this->getService('0185'),
  1. $this->getService('0116'),
  2. $this->getService('036'),
  3. $this->getService('0368'),
  4. $this->getService('097'),
  5. $this->getService('098'),
  6. $this->getService('0128'),
    Parameter #8 $signatureMapProvider of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\SignatureMap\SignatureMapProvider, object given.
    Collective
  7. $this->getService('defaultAnalysisParser'),
  8. $this->getService('stubPhpDocProvider'),
  9. $this->getService('0122'),
  10. $this->getService('0185'),
  11. $this->getService('094'),
  1. $this->getService('036'),
  2. $this->getService('0368'),
  3. $this->getService('097'),
  4. $this->getService('098'),
  5. $this->getService('0128'),
  6. $this->getService('defaultAnalysisParser'),
    Parameter #9 $parser of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Parser\Parser, object given.
    Collective
  7. $this->getService('stubPhpDocProvider'),
  8. $this->getService('0122'),
  9. $this->getService('0185'),
  10. $this->getService('094'),
  11. false
  1. $this->getService('0368'),
  2. $this->getService('097'),
  3. $this->getService('098'),
  4. $this->getService('0128'),
  5. $this->getService('defaultAnalysisParser'),
  6. $this->getService('stubPhpDocProvider'),
    Parameter #10 $stubPhpDocProvider of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\PhpDoc\StubPhpDocProvider, object given.
    Collective
  7. $this->getService('0122'),
  8. $this->getService('0185'),
  9. $this->getService('094'),
  10. false
  11. );
  1. $this->getService('097'),
  2. $this->getService('098'),
  3. $this->getService('0128'),
  4. $this->getService('defaultAnalysisParser'),
  5. $this->getService('stubPhpDocProvider'),
  6. $this->getService('0122'),
    Parameter #11 $reflectionProviderProvider of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  7. $this->getService('0185'),
  8. $this->getService('094'),
  9. false
  10. );
  11. }
  1. $this->getService('098'),
  2. $this->getService('0128'),
  3. $this->getService('defaultAnalysisParser'),
  4. $this->getService('stubPhpDocProvider'),
  5. $this->getService('0122'),
  6. $this->getService('0185'),
    Parameter #12 $fileTypeMapper of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  7. $this->getService('094'),
  8. false
  9. );
  10. }
  1. $this->getService('0128'),
  2. $this->getService('defaultAnalysisParser'),
  3. $this->getService('stubPhpDocProvider'),
  4. $this->getService('0122'),
  5. $this->getService('0185'),
  6. $this->getService('094'),
    Parameter #13 $attributeReflectionFactory of class PHPStan\Reflection\Php\PhpClassReflectionExtension constructor expects PHPStan\Reflection\AttributeReflectionFactory, object given.
    Collective
  7. false
  8. );
  9. }
  1. array $phpDocClosureThisTypeParameters,
  2. bool $acceptsNamedArguments,
  3. array $attributes
  4. ): PHPStan\Reflection\Php\PhpMethodReflection {
  5. return new PHPStan\Reflection\Php\PhpMethodReflection(
  6. $this->container->getService('096'),
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Reflection\Php\PhpMethodReflection constructor expects PHPStan\Reflection\InitializerExprTypeResolver, mixed given.
    Collective
  7. $declaringClass,
  8. $declaringTrait,
  9. $reflection,
  10. $this->container->getService('reflectionProvider'),
  11. $this->container->getService('094'),
  1. return new PHPStan\Reflection\Php\PhpMethodReflection(
  2. $this->container->getService('096'),
  3. $declaringClass,
  4. $declaringTrait,
  5. $reflection,
  6. $this->container->getService('reflectionProvider'),
    Parameter #5 $reflectionProvider of class PHPStan\Reflection\Php\PhpMethodReflection constructor expects PHPStan\Reflection\ReflectionProvider, mixed given.
    Collective
  7. $this->container->getService('094'),
  8. $this->container->getService('defaultAnalysisParser'),
  9. $templateTypeMap,
  10. $phpDocParameterTypes,
  11. $phpDocReturnType,
  1. $this->container->getService('096'),
  2. $declaringClass,
  3. $declaringTrait,
  4. $reflection,
  5. $this->container->getService('reflectionProvider'),
  6. $this->container->getService('094'),
    Parameter #6 $attributeReflectionFactory of class PHPStan\Reflection\Php\PhpMethodReflection constructor expects PHPStan\Reflection\AttributeReflectionFactory, mixed given.
    Collective
  7. $this->container->getService('defaultAnalysisParser'),
  8. $templateTypeMap,
  9. $phpDocParameterTypes,
  10. $phpDocReturnType,
  11. $phpDocThrowType,
  1. $declaringClass,
  2. $declaringTrait,
  3. $reflection,
  4. $this->container->getService('reflectionProvider'),
  5. $this->container->getService('094'),
  6. $this->container->getService('defaultAnalysisParser'),
    Parameter #7 $parser of class PHPStan\Reflection\Php\PhpMethodReflection constructor expects PHPStan\Parser\Parser, mixed given.
    Collective
  7. $templateTypeMap,
  8. $phpDocParameterTypes,
  9. $phpDocReturnType,
  10. $phpDocThrowType,
  11. $deprecatedDescription,
  1. public function createService0119(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension
  2. {
  3. return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. ['stdClass'],
  6. $this->getService('098')
  7. );
  8. }
  1. public function createService0119(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension
  2. {
  3. return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension(
  4. $this->getService('reflectionProvider'),
  5. ['stdClass'],
  6. $this->getService('098')
    Parameter #3 $annotationClassReflection of class PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension constructor expects PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension, object given.
    Collective
  7. );
  8. }
  9. public function createService0120(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension
  1. public function createService0121(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension(
  4. $this->getService('026'),
    Parameter #1 $phpVersion of class PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. 'PHPStan\Reflection\Php\BuiltinMethodReflection',
  6. 'getDeclaringClass'
  7. );
  8. }
  1. public function createService0121(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension(
  4. $this->getService('026'),
  5. 'PHPStan\Reflection\Php\BuiltinMethodReflection',
    Parameter #2 $className of class PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension constructor expects class-string, string given.
    Collective
  6. 'getDeclaringClass'
  7. );
  8. }
  1. }
  2. public function createService0122(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider
  3. {
  4. return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0123(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider
  7. {
  1. public function createService0123(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider(
  4. $this->getService('0128'),
    Parameter #1 $signatureMapProvider of class PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider constructor expects PHPStan\Reflection\SignatureMap\SignatureMapProvider, object given.
    Collective
  5. $this->getService('betterReflectionReflector'),
  6. $this->getService('0185'),
  7. $this->getService('stubPhpDocProvider'),
  8. $this->getService('094')
  9. );
  1. public function createService0123(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider(
  4. $this->getService('0128'),
  5. $this->getService('betterReflectionReflector'),
    Parameter #2 $reflector of class PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider constructor expects PHPStan\BetterReflection\Reflector\Reflector, object given.
    Collective
  6. $this->getService('0185'),
  7. $this->getService('stubPhpDocProvider'),
  8. $this->getService('094')
  9. );
  10. }
  1. public function createService0123(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider(
  4. $this->getService('0128'),
  5. $this->getService('betterReflectionReflector'),
  6. $this->getService('0185'),
    Parameter #3 $fileTypeMapper of class PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  7. $this->getService('stubPhpDocProvider'),
  8. $this->getService('094')
  9. );
  10. }
  1. {
  2. return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider(
  3. $this->getService('0128'),
  4. $this->getService('betterReflectionReflector'),
  5. $this->getService('0185'),
  6. $this->getService('stubPhpDocProvider'),
    Parameter #4 $stubPhpDocProvider of class PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider constructor expects PHPStan\PhpDoc\StubPhpDocProvider, object given.
    Collective
  7. $this->getService('094')
  8. );
  9. }
  1. return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider(
  2. $this->getService('0128'),
  3. $this->getService('betterReflectionReflector'),
  4. $this->getService('0185'),
  5. $this->getService('stubPhpDocProvider'),
  6. $this->getService('094')
    Parameter #5 $attributeReflectionFactory of class PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider constructor expects PHPStan\Reflection\AttributeReflectionFactory, object given.
    Collective
  7. );
  8. }
  9. public function createService0124(): PHPStan\Reflection\SignatureMap\SignatureMapParser
  1. }
  2. public function createService0124(): PHPStan\Reflection\SignatureMap\SignatureMapParser
  3. {
  4. return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('042'));
    Parameter #1 $typeNodeResolver of class PHPStan\Reflection\SignatureMap\SignatureMapParser constructor expects PHPStan\PhpDoc\TypeStringResolver, object given.
    Collective
  5. }
  6. public function createService0125(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider
  7. {
  1. public function createService0125(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider(
  4. $this->getService('0124'),
    Parameter #1 $parser of class PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider constructor expects PHPStan\Reflection\SignatureMap\SignatureMapParser, object given.
    Collective
  5. $this->getService('096'),
  6. $this->getService('026'),
  7. false
  8. );
  9. }
  1. public function createService0125(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider(
  4. $this->getService('0124'),
  5. $this->getService('096'),
    Parameter #2 $initializerExprTypeResolver of class PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  6. $this->getService('026'),
  7. false
  8. );
  9. }
  1. public function createService0125(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider(
  4. $this->getService('0124'),
  5. $this->getService('096'),
  6. $this->getService('026'),
    Parameter #3 $phpVersion of class PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. false
  8. );
  9. }
  1. public function createService0126(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider(
  4. $this->getService('0125'),
    Parameter #1 $functionSignatureMapProvider of class PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider constructor expects PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider, object given.
    Collective
  5. $this->getService('0100'),
  6. $this->getService('0185'),
  7. $this->getService('026'),
  8. $this->getService('096'),
  9. $this->getService('0122')
  1. public function createService0126(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider(
  4. $this->getService('0125'),
  5. $this->getService('0100'),
    Parameter #2 $fileNodesFetcher of class PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher, object given.
    Collective
  6. $this->getService('0185'),
  7. $this->getService('026'),
  8. $this->getService('096'),
  9. $this->getService('0122')
  10. );
  1. public function createService0126(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider
  2. {
  3. return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider(
  4. $this->getService('0125'),
  5. $this->getService('0100'),
  6. $this->getService('0185'),
    Parameter #3 $fileTypeMapper of class PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  7. $this->getService('026'),
  8. $this->getService('096'),
  9. $this->getService('0122')
  10. );
  11. }
  1. {
  2. return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider(
  3. $this->getService('0125'),
  4. $this->getService('0100'),
  5. $this->getService('0185'),
  6. $this->getService('026'),
    Parameter #4 $phpVersion of class PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. $this->getService('096'),
  8. $this->getService('0122')
  9. );
  10. }
  1. return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider(
  2. $this->getService('0125'),
  3. $this->getService('0100'),
  4. $this->getService('0185'),
  5. $this->getService('026'),
  6. $this->getService('096'),
    Parameter #5 $initializerExprTypeResolver of class PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  7. $this->getService('0122')
  8. );
  9. }
  1. $this->getService('0125'),
  2. $this->getService('0100'),
  3. $this->getService('0185'),
  4. $this->getService('026'),
  5. $this->getService('096'),
  6. $this->getService('0122')
    Parameter #6 $reflectionProviderProvider of class PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  7. );
  8. }
  9. public function createService0127(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory
  1. public function createService0127(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory
  2. {
  3. return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory(
  4. $this->getService('026'),
    Parameter #1 $phpVersion of class PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. $this->getService('0125'),
  6. $this->getService('0126')
  7. );
  8. }
  1. public function createService0127(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory
  2. {
  3. return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory(
  4. $this->getService('026'),
  5. $this->getService('0125'),
    Parameter #2 $functionSignatureMapProvider of class PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory constructor expects PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider, object given.
    Collective
  6. $this->getService('0126')
  7. );
  8. }
  1. public function createService0127(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory
  2. {
  3. return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory(
  4. $this->getService('026'),
  5. $this->getService('0125'),
  6. $this->getService('0126')
    Parameter #3 $php8SignatureMapProvider of class PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory constructor expects PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider, object given.
    Collective
  7. );
  8. }
  9. public function createService0128(): PHPStan\Reflection\SignatureMap\SignatureMapProvider
  1. public function createService0130(): PHPStan\Rules\AttributesCheck
  2. {
  3. return new PHPStan\Rules\AttributesCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\AttributesCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0147'),
  6. $this->getService('0132'),
  7. false
  8. );
  9. }
  1. public function createService0130(): PHPStan\Rules\AttributesCheck
  2. {
  3. return new PHPStan\Rules\AttributesCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0147'),
    Parameter #2 $functionCallParametersCheck of class PHPStan\Rules\AttributesCheck constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  6. $this->getService('0132'),
  7. false
  8. );
  9. }
  1. public function createService0130(): PHPStan\Rules\AttributesCheck
  2. {
  3. return new PHPStan\Rules\AttributesCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0147'),
  6. $this->getService('0132'),
    Parameter #3 $classCheck of class PHPStan\Rules\AttributesCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. false
  8. );
  9. }
  1. }
  2. public function createService0131(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck
  3. {
  4. return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck($this->getService('0182'), true, false, false);
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0132(): PHPStan\Rules\ClassNameCheck
  7. {
  1. public function createService0132(): PHPStan\Rules\ClassNameCheck
  2. {
  3. return new PHPStan\Rules\ClassNameCheck(
  4. $this->getService('0133'),
    Parameter #1 $classCaseSensitivityCheck of class PHPStan\Rules\ClassNameCheck constructor expects PHPStan\Rules\ClassCaseSensitivityCheck, object given.
    Collective
  5. $this->getService('0134'),
  6. $this->getService('reflectionProvider'),
  7. $this->getService('075')
  8. );
  9. }
  1. public function createService0132(): PHPStan\Rules\ClassNameCheck
  2. {
  3. return new PHPStan\Rules\ClassNameCheck(
  4. $this->getService('0133'),
  5. $this->getService('0134'),
    Parameter #2 $classForbiddenNameCheck of class PHPStan\Rules\ClassNameCheck constructor expects PHPStan\Rules\ClassForbiddenNameCheck, object given.
    Collective
  6. $this->getService('reflectionProvider'),
  7. $this->getService('075')
  8. );
  9. }
  1. public function createService0132(): PHPStan\Rules\ClassNameCheck
  2. {
  3. return new PHPStan\Rules\ClassNameCheck(
  4. $this->getService('0133'),
  5. $this->getService('0134'),
  6. $this->getService('reflectionProvider'),
    Parameter #3 $reflectionProvider of class PHPStan\Rules\ClassNameCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  7. $this->getService('075')
  8. );
  9. }
  1. {
  2. return new PHPStan\Rules\ClassNameCheck(
  3. $this->getService('0133'),
  4. $this->getService('0134'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('075')
    Parameter #4 $container of class PHPStan\Rules\ClassNameCheck constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  7. );
  8. }
  9. public function createService0133(): PHPStan\Rules\ClassCaseSensitivityCheck
  1. }
  2. public function createService0133(): PHPStan\Rules\ClassCaseSensitivityCheck
  3. {
  4. return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider'), false);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\ClassCaseSensitivityCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0134(): PHPStan\Rules\ClassForbiddenNameCheck
  7. {
  1. }
  2. public function createService0134(): PHPStan\Rules\ClassForbiddenNameCheck
  3. {
  4. return new PHPStan\Rules\ClassForbiddenNameCheck($this->getService('075'));
    Parameter #1 $container of class PHPStan\Rules\ClassForbiddenNameCheck constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0135(): PHPStan\Rules\Classes\LocalTypeAliasesCheck
  7. {
  1. public function createService0135(): PHPStan\Rules\Classes\LocalTypeAliasesCheck
  2. {
  3. return new PHPStan\Rules\Classes\LocalTypeAliasesCheck(
  4. [],
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\LocalTypeAliasesCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('040'),
  7. $this->getService('0164'),
  8. $this->getService('0132'),
  9. $this->getService('0170'),
  10. $this->getService('0153'),
  1. public function createService0135(): PHPStan\Rules\Classes\LocalTypeAliasesCheck
  2. {
  3. return new PHPStan\Rules\Classes\LocalTypeAliasesCheck(
  4. [],
  5. $this->getService('reflectionProvider'),
  6. $this->getService('040'),
    Parameter #3 $typeNodeResolver of class PHPStan\Rules\Classes\LocalTypeAliasesCheck constructor expects PHPStan\PhpDoc\TypeNodeResolver, object given.
    Collective
  7. $this->getService('0164'),
  8. $this->getService('0132'),
  9. $this->getService('0170'),
  10. $this->getService('0153'),
  11. true,
  1. {
  2. return new PHPStan\Rules\Classes\LocalTypeAliasesCheck(
  3. [],
  4. $this->getService('reflectionProvider'),
  5. $this->getService('040'),
  6. $this->getService('0164'),
    Parameter #4 $missingTypehintCheck of class PHPStan\Rules\Classes\LocalTypeAliasesCheck constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  7. $this->getService('0132'),
  8. $this->getService('0170'),
  9. $this->getService('0153'),
  10. true,
  11. true,
  1. return new PHPStan\Rules\Classes\LocalTypeAliasesCheck(
  2. [],
  3. $this->getService('reflectionProvider'),
  4. $this->getService('040'),
  5. $this->getService('0164'),
  6. $this->getService('0132'),
    Parameter #5 $classCheck of class PHPStan\Rules\Classes\LocalTypeAliasesCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. $this->getService('0170'),
  8. $this->getService('0153'),
  9. true,
  10. true,
  11. true
  1. [],
  2. $this->getService('reflectionProvider'),
  3. $this->getService('040'),
  4. $this->getService('0164'),
  5. $this->getService('0132'),
  6. $this->getService('0170'),
    Parameter #6 $unresolvableTypeHelper of class PHPStan\Rules\Classes\LocalTypeAliasesCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. $this->getService('0153'),
  8. true,
  9. true,
  10. true
  11. );
  1. $this->getService('reflectionProvider'),
  2. $this->getService('040'),
  3. $this->getService('0164'),
  4. $this->getService('0132'),
  5. $this->getService('0170'),
  6. $this->getService('0153'),
    Parameter #7 $genericObjectTypeCheck of class PHPStan\Rules\Classes\LocalTypeAliasesCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. true,
  8. true,
  9. true
  10. );
  11. }
  1. public function createService0136(): PHPStan\Rules\Classes\MethodTagCheck
  2. {
  3. return new PHPStan\Rules\Classes\MethodTagCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Classes\MethodTagCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. $this->getService('0153'),
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  1. public function createService0136(): PHPStan\Rules\Classes\MethodTagCheck
  2. {
  3. return new PHPStan\Rules\Classes\MethodTagCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Classes\MethodTagCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. $this->getService('0153'),
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  1. public function createService0136(): PHPStan\Rules\Classes\MethodTagCheck
  2. {
  3. return new PHPStan\Rules\Classes\MethodTagCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0153'),
    Parameter #3 $genericObjectTypeCheck of class PHPStan\Rules\Classes\MethodTagCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  11. true
  1. {
  2. return new PHPStan\Rules\Classes\MethodTagCheck(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0153'),
  6. $this->getService('0164'),
    Parameter #4 $missingTypehintCheck of class PHPStan\Rules\Classes\MethodTagCheck constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  7. $this->getService('0170'),
  8. true,
  9. true,
  10. true
  11. );
  1. return new PHPStan\Rules\Classes\MethodTagCheck(
  2. $this->getService('reflectionProvider'),
  3. $this->getService('0132'),
  4. $this->getService('0153'),
  5. $this->getService('0164'),
  6. $this->getService('0170'),
    Parameter #5 $unresolvableTypeHelper of class PHPStan\Rules\Classes\MethodTagCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. true,
  8. true,
  9. true
  10. );
  11. }
  1. public function createService0137(): PHPStan\Rules\Classes\MixinCheck
  2. {
  3. return new PHPStan\Rules\Classes\MixinCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Classes\MixinCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. $this->getService('0153'),
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  1. public function createService0137(): PHPStan\Rules\Classes\MixinCheck
  2. {
  3. return new PHPStan\Rules\Classes\MixinCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Classes\MixinCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. $this->getService('0153'),
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  1. public function createService0137(): PHPStan\Rules\Classes\MixinCheck
  2. {
  3. return new PHPStan\Rules\Classes\MixinCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0153'),
    Parameter #3 $genericObjectTypeCheck of class PHPStan\Rules\Classes\MixinCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  11. true
  1. {
  2. return new PHPStan\Rules\Classes\MixinCheck(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0153'),
  6. $this->getService('0164'),
    Parameter #4 $missingTypehintCheck of class PHPStan\Rules\Classes\MixinCheck constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  7. $this->getService('0170'),
  8. true,
  9. true,
  10. true
  11. );
  1. return new PHPStan\Rules\Classes\MixinCheck(
  2. $this->getService('reflectionProvider'),
  3. $this->getService('0132'),
  4. $this->getService('0153'),
  5. $this->getService('0164'),
  6. $this->getService('0170'),
    Parameter #5 $unresolvableTypeHelper of class PHPStan\Rules\Classes\MixinCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. true,
  8. true,
  9. true
  10. );
  11. }
  1. public function createService0138(): PHPStan\Rules\Classes\PropertyTagCheck
  2. {
  3. return new PHPStan\Rules\Classes\PropertyTagCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Classes\PropertyTagCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. $this->getService('0153'),
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  1. public function createService0138(): PHPStan\Rules\Classes\PropertyTagCheck
  2. {
  3. return new PHPStan\Rules\Classes\PropertyTagCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Classes\PropertyTagCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. $this->getService('0153'),
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  1. public function createService0138(): PHPStan\Rules\Classes\PropertyTagCheck
  2. {
  3. return new PHPStan\Rules\Classes\PropertyTagCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0153'),
    Parameter #3 $genericObjectTypeCheck of class PHPStan\Rules\Classes\PropertyTagCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  11. true
  1. {
  2. return new PHPStan\Rules\Classes\PropertyTagCheck(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0153'),
  6. $this->getService('0164'),
    Parameter #4 $missingTypehintCheck of class PHPStan\Rules\Classes\PropertyTagCheck constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  7. $this->getService('0170'),
  8. true,
  9. true,
  10. true
  11. );
  1. return new PHPStan\Rules\Classes\PropertyTagCheck(
  2. $this->getService('reflectionProvider'),
  3. $this->getService('0132'),
  4. $this->getService('0153'),
  5. $this->getService('0164'),
  6. $this->getService('0170'),
    Parameter #5 $unresolvableTypeHelper of class PHPStan\Rules\Classes\PropertyTagCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. true,
  8. true,
  9. true
  10. );
  11. }
  1. }
  2. public function createService0139(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper
  3. {
  4. return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('0140'), true);
    Parameter #1 $impossibleCheckTypeHelper of class PHPStan\Rules\Comparison\ConstantConditionRuleHelper constructor expects PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper, object given.
    Collective
  5. }
  6. public function createService0140(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper
  7. {
  1. public function createService0140(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper
  2. {
  3. return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('typeSpecifier'),
  6. ['stdClass'],
  7. true
  8. );
  9. }
  1. public function createService0140(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper
  2. {
  3. return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('typeSpecifier'),
    Parameter #2 $typeSpecifier of class PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper constructor expects PHPStan\Analyser\TypeSpecifier, object given.
    Collective
  6. ['stdClass'],
  7. true
  8. );
  9. }
  1. }
  2. public function createService0141(): PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver
  3. {
  4. return new PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver($this->getService('reflectionProvider'), [], [], [], []);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0142(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule
  7. {
  1. }
  2. public function createService0142(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule
  3. {
  4. return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule($this->getService('0145'));
    Parameter #1 $check of class PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule constructor expects PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck, object given.
    Collective
  5. }
  6. public function createService0143(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule
  7. {
  1. }
  2. public function createService0143(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule
  3. {
  4. return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule($this->getService('0145'));
    Parameter #1 $check of class PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule constructor expects PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck, object given.
    Collective
  5. }
  6. public function createService0144(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule
  7. {
  1. }
  2. public function createService0144(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule
  3. {
  4. return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule($this->getService('0145'));
    Parameter #1 $check of class PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule constructor expects PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck, object given.
    Collective
  5. }
  6. public function createService0145(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck
  7. {
  1. }
  2. public function createService0145(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck
  3. {
  4. return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck($this->getService('exceptionTypeResolver'));
    Parameter #1 $exceptionTypeResolver of class PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck constructor expects PHPStan\Rules\Exceptions\ExceptionTypeResolver, object given.
    Collective
  5. }
  6. public function createService0146(): PHPStan\Rules\Exceptions\TooWideThrowTypeCheck
  7. {
  1. public function createService0147(): PHPStan\Rules\FunctionCallParametersCheck
  2. {
  3. return new PHPStan\Rules\FunctionCallParametersCheck(
  4. $this->getService('0182'),
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\FunctionCallParametersCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. $this->getService('0165'),
  6. $this->getService('0170'),
  7. $this->getService('0180'),
  8. true,
  9. true,
  1. public function createService0147(): PHPStan\Rules\FunctionCallParametersCheck
  2. {
  3. return new PHPStan\Rules\FunctionCallParametersCheck(
  4. $this->getService('0182'),
  5. $this->getService('0165'),
    Parameter #2 $nullsafeCheck of class PHPStan\Rules\FunctionCallParametersCheck constructor expects PHPStan\Rules\NullsafeCheck, object given.
    Collective
  6. $this->getService('0170'),
  7. $this->getService('0180'),
  8. true,
  9. true,
  10. true,
  1. public function createService0147(): PHPStan\Rules\FunctionCallParametersCheck
  2. {
  3. return new PHPStan\Rules\FunctionCallParametersCheck(
  4. $this->getService('0182'),
  5. $this->getService('0165'),
  6. $this->getService('0170'),
    Parameter #3 $unresolvableTypeHelper of class PHPStan\Rules\FunctionCallParametersCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. $this->getService('0180'),
  8. true,
  9. true,
  10. true,
  11. true
  1. {
  2. return new PHPStan\Rules\FunctionCallParametersCheck(
  3. $this->getService('0182'),
  4. $this->getService('0165'),
  5. $this->getService('0170'),
  6. $this->getService('0180'),
    Parameter #4 $propertyReflectionFinder of class PHPStan\Rules\FunctionCallParametersCheck constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  7. true,
  8. true,
  9. true,
  10. true
  11. );
  1. public function createService0148(): PHPStan\Rules\FunctionDefinitionCheck
  2. {
  3. return new PHPStan\Rules\FunctionDefinitionCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\FunctionDefinitionCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. $this->getService('0170'),
  7. $this->getService('026'),
  8. true,
  9. false
  1. public function createService0148(): PHPStan\Rules\FunctionDefinitionCheck
  2. {
  3. return new PHPStan\Rules\FunctionDefinitionCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\FunctionDefinitionCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. $this->getService('0170'),
  7. $this->getService('026'),
  8. true,
  9. false
  10. );
  1. public function createService0148(): PHPStan\Rules\FunctionDefinitionCheck
  2. {
  3. return new PHPStan\Rules\FunctionDefinitionCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0170'),
    Parameter #3 $unresolvableTypeHelper of class PHPStan\Rules\FunctionDefinitionCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. $this->getService('026'),
  8. true,
  9. false
  10. );
  11. }
  1. {
  2. return new PHPStan\Rules\FunctionDefinitionCheck(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0170'),
  6. $this->getService('026'),
    Parameter #4 $phpVersion of class PHPStan\Rules\FunctionDefinitionCheck constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. true,
  8. false
  9. );
  10. }
  1. }
  2. public function createService0149(): PHPStan\Rules\FunctionReturnTypeCheck
  3. {
  4. return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\FunctionReturnTypeCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0150(): PHPStan\Rules\ParameterCastableToStringCheck
  7. {
  1. }
  2. public function createService0150(): PHPStan\Rules\ParameterCastableToStringCheck
  3. {
  4. return new PHPStan\Rules\ParameterCastableToStringCheck($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\ParameterCastableToStringCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0151(): PHPStan\Rules\Generics\CrossCheckInterfacesHelper
  7. {
  1. public function createService0152(): PHPStan\Rules\Generics\GenericAncestorsCheck
  2. {
  3. return new PHPStan\Rules\Generics\GenericAncestorsCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Generics\GenericAncestorsCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0153'),
  6. $this->getService('0156'),
  7. $this->getService('0170'),
  8. [],
  9. true
  1. public function createService0152(): PHPStan\Rules\Generics\GenericAncestorsCheck
  2. {
  3. return new PHPStan\Rules\Generics\GenericAncestorsCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0153'),
    Parameter #2 $genericObjectTypeCheck of class PHPStan\Rules\Generics\GenericAncestorsCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  6. $this->getService('0156'),
  7. $this->getService('0170'),
  8. [],
  9. true
  10. );
  1. public function createService0152(): PHPStan\Rules\Generics\GenericAncestorsCheck
  2. {
  3. return new PHPStan\Rules\Generics\GenericAncestorsCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0153'),
  6. $this->getService('0156'),
    Parameter #3 $varianceCheck of class PHPStan\Rules\Generics\GenericAncestorsCheck constructor expects PHPStan\Rules\Generics\VarianceCheck, object given.
    Collective
  7. $this->getService('0170'),
  8. [],
  9. true
  10. );
  11. }
  1. {
  2. return new PHPStan\Rules\Generics\GenericAncestorsCheck(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0153'),
  5. $this->getService('0156'),
  6. $this->getService('0170'),
    Parameter #4 $unresolvableTypeHelper of class PHPStan\Rules\Generics\GenericAncestorsCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. [],
  8. true
  9. );
  10. }
  1. }
  2. public function createService0154(): PHPStan\Rules\Generics\MethodTagTemplateTypeCheck
  3. {
  4. return new PHPStan\Rules\Generics\MethodTagTemplateTypeCheck($this->getService('0185'), $this->getService('0155'));
    Parameter #2 $templateTypeCheck of class PHPStan\Rules\Generics\MethodTagTemplateTypeCheck constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createService0155(): PHPStan\Rules\Generics\TemplateTypeCheck
  7. {
  1. }
  2. public function createService0154(): PHPStan\Rules\Generics\MethodTagTemplateTypeCheck
  3. {
  4. return new PHPStan\Rules\Generics\MethodTagTemplateTypeCheck($this->getService('0185'), $this->getService('0155'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Generics\MethodTagTemplateTypeCheck constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createService0155(): PHPStan\Rules\Generics\TemplateTypeCheck
  7. {
  1. public function createService0155(): PHPStan\Rules\Generics\TemplateTypeCheck
  2. {
  3. return new PHPStan\Rules\Generics\TemplateTypeCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Generics\TemplateTypeCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. $this->getService('0153'),
  7. $this->getService('0186'),
  8. true
  9. );
  1. public function createService0155(): PHPStan\Rules\Generics\TemplateTypeCheck
  2. {
  3. return new PHPStan\Rules\Generics\TemplateTypeCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Generics\TemplateTypeCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. $this->getService('0153'),
  7. $this->getService('0186'),
  8. true
  9. );
  10. }
  1. public function createService0155(): PHPStan\Rules\Generics\TemplateTypeCheck
  2. {
  3. return new PHPStan\Rules\Generics\TemplateTypeCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0153'),
    Parameter #3 $genericObjectTypeCheck of class PHPStan\Rules\Generics\TemplateTypeCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. $this->getService('0186'),
  8. true
  9. );
  10. }
  1. {
  2. return new PHPStan\Rules\Generics\TemplateTypeCheck(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0153'),
  6. $this->getService('0186'),
    Parameter #4 $typeAliasResolver of class PHPStan\Rules\Generics\TemplateTypeCheck constructor expects PHPStan\Type\TypeAliasResolver, object given.
    Collective
  7. true
  8. );
  9. }
  1. }
  2. public function createService0158(): PHPStan\Rules\IssetCheck
  3. {
  4. return new PHPStan\Rules\IssetCheck($this->getService('0179'), $this->getService('0180'), true, true);
    Parameter #1 $propertyDescriptor of class PHPStan\Rules\IssetCheck constructor expects PHPStan\Rules\Properties\PropertyDescriptor, object given.
    Collective
  5. }
  6. public function createService0159(): PHPStan\Rules\Methods\MethodCallCheck
  7. {
  1. }
  2. public function createService0158(): PHPStan\Rules\IssetCheck
  3. {
  4. return new PHPStan\Rules\IssetCheck($this->getService('0179'), $this->getService('0180'), true, true);
    Parameter #2 $propertyReflectionFinder of class PHPStan\Rules\IssetCheck constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createService0159(): PHPStan\Rules\Methods\MethodCallCheck
  7. {
  1. public function createService0159(): PHPStan\Rules\Methods\MethodCallCheck
  2. {
  3. return new PHPStan\Rules\Methods\MethodCallCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Methods\MethodCallCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0182'),
  6. false,
  7. true
  8. );
  9. }
  1. public function createService0159(): PHPStan\Rules\Methods\MethodCallCheck
  2. {
  3. return new PHPStan\Rules\Methods\MethodCallCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Methods\MethodCallCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  6. false,
  7. true
  8. );
  9. }
  1. public function createService0160(): PHPStan\Rules\Methods\StaticMethodCallCheck
  2. {
  3. return new PHPStan\Rules\Methods\StaticMethodCallCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Methods\StaticMethodCallCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0182'),
  6. $this->getService('0132'),
  7. false,
  8. true,
  9. true
  1. public function createService0160(): PHPStan\Rules\Methods\StaticMethodCallCheck
  2. {
  3. return new PHPStan\Rules\Methods\StaticMethodCallCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Methods\StaticMethodCallCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  6. $this->getService('0132'),
  7. false,
  8. true,
  9. true
  10. );
  1. public function createService0160(): PHPStan\Rules\Methods\StaticMethodCallCheck
  2. {
  3. return new PHPStan\Rules\Methods\StaticMethodCallCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
  6. $this->getService('0132'),
    Parameter #3 $classCheck of class PHPStan\Rules\Methods\StaticMethodCallCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. false,
  8. true,
  9. true
  10. );
  11. }
  1. }
  2. public function createService0161(): PHPStan\Rules\Methods\MethodSignatureRule
  3. {
  4. return new PHPStan\Rules\Methods\MethodSignatureRule($this->getService('0115'), false, false);
    Parameter #1 $phpClassReflectionExtension of class PHPStan\Rules\Methods\MethodSignatureRule constructor expects PHPStan\Reflection\Php\PhpClassReflectionExtension, object given.
    Collective
  5. }
  6. public function createService0162(): PHPStan\Rules\Methods\MethodParameterComparisonHelper
  7. {
  1. }
  2. public function createService0162(): PHPStan\Rules\Methods\MethodParameterComparisonHelper
  3. {
  4. return new PHPStan\Rules\Methods\MethodParameterComparisonHelper($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Methods\MethodParameterComparisonHelper constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0163(): PHPStan\Rules\Methods\MethodVisibilityComparisonHelper
  7. {
  1. }
  2. public function createService0166(): PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider
  3. {
  4. return new PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0167(): PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider
  7. {
  1. }
  2. public function createService0167(): PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider
  3. {
  4. return new PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0168(): PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper
  7. {
  1. public function createService0169(): PHPStan\Rules\PhpDoc\AssertRuleHelper
  2. {
  3. return new PHPStan\Rules\PhpDoc\AssertRuleHelper(
  4. $this->getService('096'),
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Rules\PhpDoc\AssertRuleHelper constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0170'),
  7. $this->getService('0132'),
  8. $this->getService('0164'),
  9. $this->getService('0153'),
  1. public function createService0169(): PHPStan\Rules\PhpDoc\AssertRuleHelper
  2. {
  3. return new PHPStan\Rules\PhpDoc\AssertRuleHelper(
  4. $this->getService('096'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\PhpDoc\AssertRuleHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0170'),
  7. $this->getService('0132'),
  8. $this->getService('0164'),
  9. $this->getService('0153'),
  10. true,
  1. public function createService0169(): PHPStan\Rules\PhpDoc\AssertRuleHelper
  2. {
  3. return new PHPStan\Rules\PhpDoc\AssertRuleHelper(
  4. $this->getService('096'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0170'),
    Parameter #3 $unresolvableTypeHelper of class PHPStan\Rules\PhpDoc\AssertRuleHelper constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. $this->getService('0132'),
  8. $this->getService('0164'),
  9. $this->getService('0153'),
  10. true,
  11. true
  1. {
  2. return new PHPStan\Rules\PhpDoc\AssertRuleHelper(
  3. $this->getService('096'),
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0170'),
  6. $this->getService('0132'),
    Parameter #4 $classCheck of class PHPStan\Rules\PhpDoc\AssertRuleHelper constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. $this->getService('0164'),
  8. $this->getService('0153'),
  9. true,
  10. true
  11. );
  1. return new PHPStan\Rules\PhpDoc\AssertRuleHelper(
  2. $this->getService('096'),
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0170'),
  5. $this->getService('0132'),
  6. $this->getService('0164'),
    Parameter #5 $missingTypehintCheck of class PHPStan\Rules\PhpDoc\AssertRuleHelper constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  7. $this->getService('0153'),
  8. true,
  9. true
  10. );
  11. }
  1. $this->getService('096'),
  2. $this->getService('reflectionProvider'),
  3. $this->getService('0170'),
  4. $this->getService('0132'),
  5. $this->getService('0164'),
  6. $this->getService('0153'),
    Parameter #6 $genericObjectTypeCheck of class PHPStan\Rules\PhpDoc\AssertRuleHelper constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. true,
  8. true
  9. );
  10. }
  1. }
  2. public function createService0171(): PHPStan\Rules\PhpDoc\GenericCallableRuleHelper
  3. {
  4. return new PHPStan\Rules\PhpDoc\GenericCallableRuleHelper($this->getService('0155'));
    Parameter #1 $templateTypeCheck of class PHPStan\Rules\PhpDoc\GenericCallableRuleHelper constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createService0172(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck
  7. {
  1. public function createService0172(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck
  2. {
  3. return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck(
  4. $this->getService('0153'),
    Parameter #1 $genericObjectTypeCheck of class PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  5. $this->getService('0170'),
  6. $this->getService('0171')
  7. );
  8. }
  1. public function createService0172(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck
  2. {
  3. return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck(
  4. $this->getService('0153'),
  5. $this->getService('0170'),
    Parameter #2 $unresolvableTypeHelper of class PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  6. $this->getService('0171')
  7. );
  8. }
  1. public function createService0172(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck
  2. {
  3. return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck(
  4. $this->getService('0153'),
  5. $this->getService('0170'),
  6. $this->getService('0171')
    Parameter #3 $genericCallableRuleHelper of class PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck constructor expects PHPStan\Rules\PhpDoc\GenericCallableRuleHelper, object given.
    Collective
  7. );
  8. }
  9. public function createService0173(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper
  1. public function createService0173(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper
  2. {
  3. return new PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper(
  4. $this->getService('040'),
    Parameter #1 $typeNodeResolver of class PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper constructor expects PHPStan\PhpDoc\TypeNodeResolver, object given.
    Collective
  5. $this->getService('0185'),
  6. $this->getService('reflectionProvider'),
  7. false,
  8. false
  9. );
  1. public function createService0173(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper
  2. {
  3. return new PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper(
  4. $this->getService('040'),
  5. $this->getService('0185'),
    Parameter #2 $fileTypeMapper of class PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  6. $this->getService('reflectionProvider'),
  7. false,
  8. false
  9. );
  10. }
  1. public function createService0173(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper
  2. {
  3. return new PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper(
  4. $this->getService('040'),
  5. $this->getService('0185'),
  6. $this->getService('reflectionProvider'),
    Parameter #3 $reflectionProvider of class PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  7. false,
  8. false
  9. );
  10. }
  1. public function createService0175(): PHPStan\Rules\Properties\AccessPropertiesCheck
  2. {
  3. return new PHPStan\Rules\Properties\AccessPropertiesCheck(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Properties\AccessPropertiesCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0182'),
  6. $this->getService('026'),
  7. true,
  8. false
  9. );
  1. public function createService0175(): PHPStan\Rules\Properties\AccessPropertiesCheck
  2. {
  3. return new PHPStan\Rules\Properties\AccessPropertiesCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Properties\AccessPropertiesCheck constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  6. $this->getService('026'),
  7. true,
  8. false
  9. );
  10. }
  1. public function createService0175(): PHPStan\Rules\Properties\AccessPropertiesCheck
  2. {
  3. return new PHPStan\Rules\Properties\AccessPropertiesCheck(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
  6. $this->getService('026'),
    Parameter #3 $phpVersion of class PHPStan\Rules\Properties\AccessPropertiesCheck constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. true,
  8. false
  9. );
  10. }
  1. }
  2. public function createService0176(): PHPStan\Type\Php\BcMathNumberOperatorTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\BcMathNumberOperatorTypeSpecifyingExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\BcMathNumberOperatorTypeSpecifyingExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0177(): PHPStan\Rules\Properties\UninitializedPropertyRule
  7. {
  1. }
  2. public function createService0177(): PHPStan\Rules\Properties\UninitializedPropertyRule
  3. {
  4. return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('0110'));
    Parameter #1 $constructorsHelper of class PHPStan\Rules\Properties\UninitializedPropertyRule constructor expects PHPStan\Reflection\ConstructorsHelper, object given.
    Collective
  5. }
  6. public function createService0178(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider
  7. {
  1. }
  2. public function createService0178(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider
  3. {
  4. return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0179(): PHPStan\Rules\Properties\PropertyDescriptor
  7. {
  1. }
  2. public function createService0182(): PHPStan\Rules\RuleLevelHelper
  3. {
  4. return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), true, false, true, true, true, false, true);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\RuleLevelHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0183(): PHPStan\Rules\UnusedFunctionParametersCheck
  7. {
  1. }
  2. public function createService0183(): PHPStan\Rules\UnusedFunctionParametersCheck
  3. {
  4. return new PHPStan\Rules\UnusedFunctionParametersCheck($this->getService('reflectionProvider'), false);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\UnusedFunctionParametersCheck constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0184(): PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck
  7. {
  1. public function createService0185(): PHPStan\Type\FileTypeMapper
  2. {
  3. return new PHPStan\Type\FileTypeMapper(
  4. $this->getService('0122'),
  5. $this->getService('defaultAnalysisParser'),
    Parameter #2 $phpParser of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\Parser\Parser, object given.
    Collective
  6. $this->getService('038'),
  7. $this->getService('037'),
  8. $this->getService('025'),
  9. $this->getService('085')
  10. );
  1. public function createService0186(): PHPStan\Type\TypeAliasResolver
  2. {
  3. return new PHPStan\Type\UsefulTypeAliasResolver(
  4. [],
  5. $this->getService('042'),
    Parameter #2 $typeStringResolver of class PHPStan\Type\UsefulTypeAliasResolver constructor expects PHPStan\PhpDoc\TypeStringResolver, object given.
    Collective
  6. $this->getService('040'),
  7. $this->getService('reflectionProvider')
  8. );
  9. }
  1. public function createService0186(): PHPStan\Type\TypeAliasResolver
  2. {
  3. return new PHPStan\Type\UsefulTypeAliasResolver(
  4. [],
  5. $this->getService('042'),
  6. $this->getService('040'),
    Parameter #3 $typeNodeResolver of class PHPStan\Type\UsefulTypeAliasResolver constructor expects PHPStan\PhpDoc\TypeNodeResolver, object given.
    Collective
  7. $this->getService('reflectionProvider')
  8. );
  9. }
  1. {
  2. return new PHPStan\Type\UsefulTypeAliasResolver(
  3. [],
  4. $this->getService('042'),
  5. $this->getService('040'),
  6. $this->getService('reflectionProvider')
    Parameter #4 $reflectionProvider of class PHPStan\Type\UsefulTypeAliasResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  7. );
  8. }
  9. public function createService0187(): PHPStan\Type\TypeAliasResolverProvider
  1. }
  2. public function createService0187(): PHPStan\Type\TypeAliasResolverProvider
  3. {
  4. return new PHPStan\Type\LazyTypeAliasResolverProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Type\LazyTypeAliasResolverProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0188(): PHPStan\Type\BitwiseFlagHelper
  7. {
  1. }
  2. public function createService0188(): PHPStan\Type\BitwiseFlagHelper
  3. {
  4. return new PHPStan\Type\BitwiseFlagHelper($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\BitwiseFlagHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0189(): PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0192(): PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0193(): PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0193(): PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0194(): PHPStan\Type\Php\ArrayColumnHelper
  7. {
  1. }
  2. public function createService0194(): PHPStan\Type\Php\ArrayColumnHelper
  3. {
  4. return new PHPStan\Type\Php\ArrayColumnHelper($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayColumnHelper constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0195(): PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0195(): PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension($this->getService('0194'));
    Parameter #1 $arrayColumnHelper of class PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension constructor expects PHPStan\Type\Php\ArrayColumnHelper, object given.
    Collective
  5. }
  6. public function createService0196(): PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0196(): PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0197(): PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0198(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0199(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0199(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0200(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper
  7. {
  1. }
  2. public function createService0200(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper
  3. {
  4. return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0201(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0201(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension($this->getService('0200'));
    Parameter #1 $arrayFilterFunctionReturnTypeHelper of class PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension constructor expects PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0202(): PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0202(): PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0203(): PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0203(): PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension($this->getService('0200'));
    Parameter #1 $arrayFilterFunctionReturnTypeHelper of class PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension constructor expects PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0204(): PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0209(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0210(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0217(): PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0218(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0219(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0220(): PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0220(): PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0221(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0221(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0222(): PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension
  7. {
  1. }
  2. public function createService0223(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0224(): PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0228(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0229(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0233(): PHPStan\Type\Php\ConstantFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ConstantFunctionReturnTypeExtension($this->getService('0234'));
    Parameter #1 $constantHelper of class PHPStan\Type\Php\ConstantFunctionReturnTypeExtension constructor expects PHPStan\Type\Php\ConstantHelper, object given.
    Collective
  5. }
  6. public function createService0234(): PHPStan\Type\Php\ConstantHelper
  7. {
  1. }
  2. public function createService0236(): PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0237(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension
  7. {
  1. }
  2. public function createService0238(): PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0239(): PHPStan\Type\Php\DateFunctionReturnTypeHelper
  7. {
  1. }
  2. public function createService0240(): PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension($this->getService('0239'));
    Parameter #1 $dateFunctionReturnTypeHelper of class PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension constructor expects PHPStan\Type\Php\DateFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0241(): PHPStan\Type\Php\DateFormatMethodReturnTypeExtension
  7. {
  1. }
  2. public function createService0241(): PHPStan\Type\Php\DateFormatMethodReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateFormatMethodReturnTypeExtension($this->getService('0239'));
    Parameter #1 $dateFunctionReturnTypeHelper of class PHPStan\Type\Php\DateFormatMethodReturnTypeExtension constructor expects PHPStan\Type\Php\DateFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0242(): PHPStan\Type\Php\DateFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0242(): PHPStan\Type\Php\DateFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateFunctionReturnTypeExtension($this->getService('0239'));
    Parameter #1 $dateFunctionReturnTypeHelper of class PHPStan\Type\Php\DateFunctionReturnTypeExtension constructor expects PHPStan\Type\Php\DateFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0243(): PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension
  7. {
  1. }
  2. public function createService0243(): PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0244(): PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0247(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('026'), 'DateTime');
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateTimeModifyReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0248(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension
  7. {
  1. }
  2. public function createService0248(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('026'), 'DateTimeImmutable');
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateTimeModifyReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0249(): PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension
  7. {
  1. }
  2. public function createService0249(): PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0250(): PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension
  7. {
  1. }
  2. public function createService0250(): PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0251(): PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension
  7. {
  1. }
  2. public function createService0251(): PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0252(): PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension
  7. {
  1. }
  2. public function createService0252(): PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0253(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0256(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0257(): PHPStan\Type\Php\FilterFunctionReturnTypeHelper
  7. {
  1. }
  2. public function createService0257(): PHPStan\Type\Php\FilterFunctionReturnTypeHelper
  3. {
  4. return new PHPStan\Type\Php\FilterFunctionReturnTypeHelper($this->getService('reflectionProvider'), $this->getService('026'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\FilterFunctionReturnTypeHelper constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0258(): PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0257(): PHPStan\Type\Php\FilterFunctionReturnTypeHelper
  3. {
  4. return new PHPStan\Type\Php\FilterFunctionReturnTypeHelper($this->getService('reflectionProvider'), $this->getService('026'));
    Parameter #2 $phpVersion of class PHPStan\Type\Php\FilterFunctionReturnTypeHelper constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0258(): PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0258(): PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension($this->getService('0257'));
    Parameter #1 $filterFunctionReturnTypeHelper of class PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension constructor expects PHPStan\Type\Php\FilterFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0259(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0259(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('0257'));
    Parameter #1 $filterFunctionReturnTypeHelper of class PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension constructor expects PHPStan\Type\Php\FilterFunctionReturnTypeHelper, object given.
    Collective
  5. }
  6. public function createService0260(): PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension
  7. {
  1. public function createService0260(): PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension(
  4. $this->getService('0257'),
    Parameter #1 $filterFunctionReturnTypeHelper of class PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension constructor expects PHPStan\Type\Php\FilterFunctionReturnTypeHelper, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createService0260(): PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension(
  4. $this->getService('0257'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createService0261(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension
  1. }
  2. public function createService0265(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0266(): PHPStan\Type\Php\GettypeFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0268(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\HashFunctionsReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0269(): PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0269(): PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0270(): PHPStan\Type\Php\IntdivThrowTypeExtension
  7. {
  1. }
  2. public function createService0272(): PHPStan\Type\Php\JsonThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\JsonThrowTypeExtension($this->getService('reflectionProvider'), $this->getService('0188'));
    Parameter #2 $bitwiseFlagAnalyser of class PHPStan\Type\Php\JsonThrowTypeExtension constructor expects PHPStan\Type\BitwiseFlagHelper, object given.
    Collective
  5. }
  6. public function createService0273(): PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension
  7. {
  1. }
  2. public function createService0272(): PHPStan\Type\Php\JsonThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\JsonThrowTypeExtension($this->getService('reflectionProvider'), $this->getService('0188'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\JsonThrowTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0273(): PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension
  7. {
  1. }
  2. public function createService0275(): PHPStan\Type\Php\PregMatchTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\PregMatchTypeSpecifyingExtension($this->getService('0278'));
    Parameter #1 $regexShapeMatcher of class PHPStan\Type\Php\PregMatchTypeSpecifyingExtension constructor expects PHPStan\Type\Php\RegexArrayShapeMatcher, object given.
    Collective
  5. }
  6. public function createService0276(): PHPStan\Type\Php\PregMatchParameterOutTypeExtension
  7. {
  1. }
  2. public function createService0276(): PHPStan\Type\Php\PregMatchParameterOutTypeExtension
  3. {
  4. return new PHPStan\Type\Php\PregMatchParameterOutTypeExtension($this->getService('0278'));
    Parameter #1 $regexShapeMatcher of class PHPStan\Type\Php\PregMatchParameterOutTypeExtension constructor expects PHPStan\Type\Php\RegexArrayShapeMatcher, object given.
    Collective
  5. }
  6. public function createService0277(): PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension
  7. {
  1. }
  2. public function createService0277(): PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension
  3. {
  4. return new PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension($this->getService('0278'));
    Parameter #1 $regexShapeMatcher of class PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension constructor expects PHPStan\Type\Php\RegexArrayShapeMatcher, object given.
    Collective
  5. }
  6. public function createService0278(): PHPStan\Type\Php\RegexArrayShapeMatcher
  7. {
  1. public function createService0278(): PHPStan\Type\Php\RegexArrayShapeMatcher
  2. {
  3. return new PHPStan\Type\Php\RegexArrayShapeMatcher(
  4. $this->getService('0279'),
    Parameter #1 $regexGroupParser of class PHPStan\Type\Php\RegexArrayShapeMatcher constructor expects PHPStan\Type\Regex\RegexGroupParser, object given.
    Collective
  5. $this->getService('0280'),
  6. $this->getService('026')
  7. );
  8. }
  1. public function createService0278(): PHPStan\Type\Php\RegexArrayShapeMatcher
  2. {
  3. return new PHPStan\Type\Php\RegexArrayShapeMatcher(
  4. $this->getService('0279'),
  5. $this->getService('0280'),
    Parameter #2 $regexExpressionHelper of class PHPStan\Type\Php\RegexArrayShapeMatcher constructor expects PHPStan\Type\Regex\RegexExpressionHelper, object given.
    Collective
  6. $this->getService('026')
  7. );
  8. }
  1. public function createService0278(): PHPStan\Type\Php\RegexArrayShapeMatcher
  2. {
  3. return new PHPStan\Type\Php\RegexArrayShapeMatcher(
  4. $this->getService('0279'),
  5. $this->getService('0280'),
  6. $this->getService('026')
    Parameter #3 $phpVersion of class PHPStan\Type\Php\RegexArrayShapeMatcher constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. );
  8. }
  9. public function createService0279(): PHPStan\Type\Regex\RegexGroupParser
  1. }
  2. public function createService0279(): PHPStan\Type\Regex\RegexGroupParser
  3. {
  4. return new PHPStan\Type\Regex\RegexGroupParser($this->getService('026'), $this->getService('0280'));
    Parameter #1 $phpVersion of class PHPStan\Type\Regex\RegexGroupParser constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0280(): PHPStan\Type\Regex\RegexExpressionHelper
  7. {
  1. }
  2. public function createService0279(): PHPStan\Type\Regex\RegexGroupParser
  3. {
  4. return new PHPStan\Type\Regex\RegexGroupParser($this->getService('026'), $this->getService('0280'));
    Parameter #2 $regexExpressionHelper of class PHPStan\Type\Regex\RegexGroupParser constructor expects PHPStan\Type\Regex\RegexExpressionHelper, object given.
    Collective
  5. }
  6. public function createService0280(): PHPStan\Type\Regex\RegexExpressionHelper
  7. {
  1. }
  2. public function createService0280(): PHPStan\Type\Regex\RegexExpressionHelper
  3. {
  4. return new PHPStan\Type\Regex\RegexExpressionHelper($this->getService('096'));
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Type\Regex\RegexExpressionHelper constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. }
  6. public function createService0281(): PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension
  7. {
  1. }
  2. public function createService0282(): PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0283(): PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension
  7. {
  1. }
  2. public function createService0283(): PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0284(): PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension
  7. {
  1. }
  2. public function createService0284(): PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension
  3. {
  4. return new PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0285(): PHPStan\Type\Php\StrContainingTypeSpecifyingExtension
  7. {
  1. }
  2. public function createService0290(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('0180'));
    Parameter #1 $propertyReflectionFinder of class PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createService0291(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0291(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0292(): PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0293(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0294(): PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0295(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('0188'));
    Parameter #1 $bitwiseFlagAnalyser of class PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension constructor expects PHPStan\Type\BitwiseFlagHelper, object given.
    Collective
  5. }
  6. public function createService0296(): PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension
  7. {
  1. }
  2. public function createService0300(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\MbFunctionsReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0301(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0302(): PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0303(): PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0303(): PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0304(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0315(): PHPStan\Type\Php\SubstrDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\SubstrDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\SubstrDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0316(): PHPStan\Type\Php\ThrowableReturnTypeExtension
  7. {
  1. }
  2. public function createService0318(): PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0319(): PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension
  7. {
  1. }
  2. public function createService0320(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension(null, $this->getService('029'));
    Parameter #2 $composerPhpVersionFactory of class PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension constructor expects PHPStan\Php\ComposerPhpVersionFactory, object given.
    Collective
  5. }
  6. public function createService0321(): PHPStan\Type\Php\PowFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0322(): PHPStan\Type\Php\RoundFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\RoundFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\RoundFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0323(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0330(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension($this->getService('0234'));
    Parameter #1 $constantHelper of class PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension constructor expects PHPStan\Type\Php\ConstantHelper, object given.
    Collective
  5. }
  6. public function createService0331(): PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension
  7. {
  1. }
  2. public function createService0334(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0289'));
    Parameter #1 $methodExistsExtension of class PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension constructor expects PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension, object given.
    Collective
  5. }
  6. public function createService0335(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension
  7. {
  1. }
  2. public function createService0336(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension($this->getService('0339'));
    Parameter #1 $isAFunctionTypeSpecifyingHelper of class PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension constructor expects PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper, object given.
    Collective
  5. }
  6. public function createService0337(): PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension
  7. {
  1. }
  2. public function createService0338(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension
  3. {
  4. return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension($this->getService('0339'));
    Parameter #1 $isAFunctionTypeSpecifyingHelper of class PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension constructor expects PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper, object given.
    Collective
  5. }
  6. public function createService0339(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper
  7. {
  1. public function createService0341(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0188')
  6. );
  7. }
  1. public function createService0341(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0188')
    Parameter #2 $bitwiseFlagAnalyser of class PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension constructor expects PHPStan\Type\BitwiseFlagHelper, object given.
    Collective
  6. );
  7. }
  8. public function createService0342(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension
  1. public function createService0342(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension
  2. {
  3. return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. true,
  6. ['stdClass']
  7. );
  8. }
  1. }
  2. public function createService0345(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension
  3. {
  4. return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0346(): PHPStan\Type\Php\StrTokFunctionReturnTypeExtension
  7. {
  1. public function createService0359(): PHPStan\Type\ClosureTypeFactory
  2. {
  3. return new PHPStan\Type\ClosureTypeFactory(
  4. $this->getService('096'),
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Type\ClosureTypeFactory constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. $this->getService('0366'),
  6. $this->getService('originalBetterReflectionReflector'),
  7. $this->getService('currentPhpVersionPhpParser')
  8. );
  9. }
  1. public function createService0359(): PHPStan\Type\ClosureTypeFactory
  2. {
  3. return new PHPStan\Type\ClosureTypeFactory(
  4. $this->getService('096'),
  5. $this->getService('0366'),
    Parameter #2 $reflectionSourceStubber of class PHPStan\Type\ClosureTypeFactory constructor expects PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber, object given.
    Collective
  6. $this->getService('originalBetterReflectionReflector'),
  7. $this->getService('currentPhpVersionPhpParser')
  8. );
  9. }
  1. public function createService0359(): PHPStan\Type\ClosureTypeFactory
  2. {
  3. return new PHPStan\Type\ClosureTypeFactory(
  4. $this->getService('096'),
  5. $this->getService('0366'),
  6. $this->getService('originalBetterReflectionReflector'),
    Parameter #3 $reflector of class PHPStan\Type\ClosureTypeFactory constructor expects PHPStan\BetterReflection\Reflector\Reflector, object given.
    Collective
  7. $this->getService('currentPhpVersionPhpParser')
  8. );
  9. }
  1. {
  2. return new PHPStan\Type\ClosureTypeFactory(
  3. $this->getService('096'),
  4. $this->getService('0366'),
  5. $this->getService('originalBetterReflectionReflector'),
  6. $this->getService('currentPhpVersionPhpParser')
    Parameter #4 $parser of class PHPStan\Type\ClosureTypeFactory constructor expects PhpParser\Parser, object given.
    Collective
  7. );
  8. }
  9. public function createService0360(): PHPStan\Type\Constant\OversizedArrayBuilder
  1. }
  2. public function createService0361(): PHPStan\Rules\Functions\PrintfHelper
  3. {
  4. return new PHPStan\Rules\Functions\PrintfHelper($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Functions\PrintfHelper constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0362(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory
  7. {
  1. public function createService0362(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory(
  4. $this->getService('phpParserDecorator'),
    Parameter #1 $parser of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PhpParser\Parser, object given.
    Collective
  5. $this->getService('php8PhpParser'),
  6. $this->getService('0365'),
  7. $this->getService('0366'),
  8. $this->getService('0106'),
  9. $this->getService('0103'),
  1. public function createService0362(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory(
  4. $this->getService('phpParserDecorator'),
  5. $this->getService('php8PhpParser'),
    Parameter #2 $php8Parser of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PhpParser\Parser, object given.
    Collective
  6. $this->getService('0365'),
  7. $this->getService('0366'),
  8. $this->getService('0106'),
  9. $this->getService('0103'),
  10. $this->getService('0101'),
  1. public function createService0362(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory(
  4. $this->getService('phpParserDecorator'),
  5. $this->getService('php8PhpParser'),
  6. $this->getService('0365'),
    Parameter #3 $phpstormStubsSourceStubber of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber, object given.
    Collective
  7. $this->getService('0366'),
  8. $this->getService('0106'),
  9. $this->getService('0103'),
  10. $this->getService('0101'),
  11. $this->getService('0104'),
  1. {
  2. return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory(
  3. $this->getService('phpParserDecorator'),
  4. $this->getService('php8PhpParser'),
  5. $this->getService('0365'),
  6. $this->getService('0366'),
    Parameter #4 $reflectionSourceStubber of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber, object given.
    Collective
  7. $this->getService('0106'),
  8. $this->getService('0103'),
  9. $this->getService('0101'),
  10. $this->getService('0104'),
  11. $this->getService('0100'),
  1. return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory(
  2. $this->getService('phpParserDecorator'),
  3. $this->getService('php8PhpParser'),
  4. $this->getService('0365'),
  5. $this->getService('0366'),
  6. $this->getService('0106'),
    Parameter #5 $optimizedSingleFileSourceLocatorRepository of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository, object given.
    Collective
  7. $this->getService('0103'),
  8. $this->getService('0101'),
  9. $this->getService('0104'),
  10. $this->getService('0100'),
  11. [],
  1. $this->getService('phpParserDecorator'),
  2. $this->getService('php8PhpParser'),
  3. $this->getService('0365'),
  4. $this->getService('0366'),
  5. $this->getService('0106'),
  6. $this->getService('0103'),
    Parameter #6 $optimizedDirectorySourceLocatorRepository of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository, object given.
    Collective
  7. $this->getService('0101'),
  8. $this->getService('0104'),
  9. $this->getService('0100'),
  10. [],
  11. [],
  1. $this->getService('php8PhpParser'),
  2. $this->getService('0365'),
  3. $this->getService('0366'),
  4. $this->getService('0106'),
  5. $this->getService('0103'),
  6. $this->getService('0101'),
    Parameter #7 $composerJsonAndInstalledJsonSourceLocatorMaker of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker, object given.
    Collective
  7. $this->getService('0104'),
  8. $this->getService('0100'),
  9. [],
  10. [],
  11. $this->getParameter('analysedPaths'),
  1. $this->getService('0365'),
  2. $this->getService('0366'),
  3. $this->getService('0106'),
  4. $this->getService('0103'),
  5. $this->getService('0101'),
  6. $this->getService('0104'),
    Parameter #8 $optimizedPsrAutoloaderLocatorFactory of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory, object given.
    Collective
  7. $this->getService('0100'),
  8. [],
  9. [],
  10. $this->getParameter('analysedPaths'),
  11. ['/app'],
  1. $this->getService('0366'),
  2. $this->getService('0106'),
  3. $this->getService('0103'),
  4. $this->getService('0101'),
  5. $this->getService('0104'),
  6. $this->getService('0100'),
    Parameter #9 $fileNodesFetcher of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher, object given.
    Collective
  7. [],
  8. [],
  9. $this->getParameter('analysedPaths'),
  10. ['/app'],
  11. $this->getParameter('analysedPathsFromConfig'),
  1. $this->getService('0101'),
  2. $this->getService('0104'),
  3. $this->getService('0100'),
  4. [],
  5. [],
  6. $this->getParameter('analysedPaths'),
    Parameter #12 $analysedPaths of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects array<string>, mixed given.
    Collective
  7. ['/app'],
  8. $this->getParameter('analysedPathsFromConfig'),
  9. false,
  10. $this->getParameter('singleReflectionFile')
  11. );
  1. $this->getService('0100'),
  2. [],
  3. [],
  4. $this->getParameter('analysedPaths'),
  5. ['/app'],
  6. $this->getParameter('analysedPathsFromConfig'),
    Parameter #14 $analysedPathsFromConfig of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects array<string>, mixed given.
    Collective
  7. false,
  8. $this->getParameter('singleReflectionFile')
  9. );
  10. }
  1. [],
  2. $this->getParameter('analysedPaths'),
  3. ['/app'],
  4. $this->getParameter('analysedPathsFromConfig'),
  5. false,
  6. $this->getParameter('singleReflectionFile')
    Parameter #16 $singleReflectionFile of class PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory constructor expects string|null, mixed given.
    Collective
  7. );
  8. }
  9. public function createService0363(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory
  1. public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->container->getService('0122'),
    Parameter #1 $reflectionProviderProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, mixed given.
    Collective
  5. $this->container->getService('096'),
  6. $this->container->getService('078'),
  7. $reflector,
  8. $this->container->getService('0185'),
  9. $this->container->getService('036'),
  1. public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->container->getService('0122'),
  5. $this->container->getService('096'),
    Parameter #2 $initializerExprTypeResolver of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\InitializerExprTypeResolver, mixed given.
    Collective
  6. $this->container->getService('078'),
  7. $reflector,
  8. $this->container->getService('0185'),
  9. $this->container->getService('036'),
  10. $this->container->getService('0368'),
  1. public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->container->getService('0122'),
  5. $this->container->getService('096'),
  6. $this->container->getService('078'),
    Parameter #3 $classReflectionExtensionRegistryProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider, mixed given.
    Collective
  7. $reflector,
  8. $this->container->getService('0185'),
  9. $this->container->getService('036'),
  10. $this->container->getService('0368'),
  11. $this->container->getService('026'),
  1. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  2. $this->container->getService('0122'),
  3. $this->container->getService('096'),
  4. $this->container->getService('078'),
  5. $reflector,
  6. $this->container->getService('0185'),
    Parameter #5 $fileTypeMapper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Type\FileTypeMapper, mixed given.
    Collective
  7. $this->container->getService('036'),
  8. $this->container->getService('0368'),
  9. $this->container->getService('026'),
  10. $this->container->getService('0123'),
  11. $this->container->getService('stubPhpDocProvider'),
  1. $this->container->getService('0122'),
  2. $this->container->getService('096'),
  3. $this->container->getService('078'),
  4. $reflector,
  5. $this->container->getService('0185'),
  6. $this->container->getService('036'),
    Parameter #6 $phpDocInheritanceResolver of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\PhpDoc\PhpDocInheritanceResolver, mixed given.
    Collective
  7. $this->container->getService('0368'),
  8. $this->container->getService('026'),
  9. $this->container->getService('0123'),
  10. $this->container->getService('stubPhpDocProvider'),
  11. $this->container->getService('095'),
  1. $this->container->getService('096'),
  2. $this->container->getService('078'),
  3. $reflector,
  4. $this->container->getService('0185'),
  5. $this->container->getService('036'),
  6. $this->container->getService('0368'),
    Parameter #7 $deprecationProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\Deprecation\DeprecationProvider, mixed given.
    Collective
  7. $this->container->getService('026'),
  8. $this->container->getService('0123'),
  9. $this->container->getService('stubPhpDocProvider'),
  10. $this->container->getService('095'),
  11. $this->container->getService('relativePathHelper'),
  1. $this->container->getService('078'),
  2. $reflector,
  3. $this->container->getService('0185'),
  4. $this->container->getService('036'),
  5. $this->container->getService('0368'),
  6. $this->container->getService('026'),
    Parameter #8 $phpVersion of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Php\PhpVersion, mixed given.
    Collective
  7. $this->container->getService('0123'),
  8. $this->container->getService('stubPhpDocProvider'),
  9. $this->container->getService('095'),
  10. $this->container->getService('relativePathHelper'),
  11. $this->container->getService('025'),
  1. $reflector,
  2. $this->container->getService('0185'),
  3. $this->container->getService('036'),
  4. $this->container->getService('0368'),
  5. $this->container->getService('026'),
  6. $this->container->getService('0123'),
    Parameter #9 $nativeFunctionReflectionProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider, mixed given.
    Collective
  7. $this->container->getService('stubPhpDocProvider'),
  8. $this->container->getService('095'),
  9. $this->container->getService('relativePathHelper'),
  10. $this->container->getService('025'),
  11. $this->container->getService('085'),
  1. $this->container->getService('0185'),
  2. $this->container->getService('036'),
  3. $this->container->getService('0368'),
  4. $this->container->getService('026'),
  5. $this->container->getService('0123'),
  6. $this->container->getService('stubPhpDocProvider'),
    Parameter #10 $stubPhpDocProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\PhpDoc\StubPhpDocProvider, mixed given.
    Collective
  7. $this->container->getService('095'),
  8. $this->container->getService('relativePathHelper'),
  9. $this->container->getService('025'),
  10. $this->container->getService('085'),
  11. $this->container->getService('0365'),
  1. $this->container->getService('036'),
  2. $this->container->getService('0368'),
  3. $this->container->getService('026'),
  4. $this->container->getService('0123'),
  5. $this->container->getService('stubPhpDocProvider'),
  6. $this->container->getService('095'),
    Parameter #11 $functionReflectionFactory of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\FunctionReflectionFactory, mixed given.
    Collective
  7. $this->container->getService('relativePathHelper'),
  8. $this->container->getService('025'),
  9. $this->container->getService('085'),
  10. $this->container->getService('0365'),
  11. $this->container->getService('0128'),
  1. $this->container->getService('0368'),
  2. $this->container->getService('026'),
  3. $this->container->getService('0123'),
  4. $this->container->getService('stubPhpDocProvider'),
  5. $this->container->getService('095'),
  6. $this->container->getService('relativePathHelper'),
    Parameter #12 $relativePathHelper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\File\RelativePathHelper, mixed given.
    Collective
  7. $this->container->getService('025'),
  8. $this->container->getService('085'),
  9. $this->container->getService('0365'),
  10. $this->container->getService('0128'),
  11. $this->container->getService('094'),
  1. $this->container->getService('026'),
  2. $this->container->getService('0123'),
  3. $this->container->getService('stubPhpDocProvider'),
  4. $this->container->getService('095'),
  5. $this->container->getService('relativePathHelper'),
  6. $this->container->getService('025'),
    Parameter #13 $anonymousClassNameHelper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Broker\AnonymousClassNameHelper, mixed given.
    Collective
  7. $this->container->getService('085'),
  8. $this->container->getService('0365'),
  9. $this->container->getService('0128'),
  10. $this->container->getService('094'),
  11. ['stdClass']
  1. $this->container->getService('0123'),
  2. $this->container->getService('stubPhpDocProvider'),
  3. $this->container->getService('095'),
  4. $this->container->getService('relativePathHelper'),
  5. $this->container->getService('025'),
  6. $this->container->getService('085'),
    Parameter #14 $fileHelper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\File\FileHelper, mixed given.
    Collective
  7. $this->container->getService('0365'),
  8. $this->container->getService('0128'),
  9. $this->container->getService('094'),
  10. ['stdClass']
  11. );
  1. $this->container->getService('stubPhpDocProvider'),
  2. $this->container->getService('095'),
  3. $this->container->getService('relativePathHelper'),
  4. $this->container->getService('025'),
  5. $this->container->getService('085'),
  6. $this->container->getService('0365'),
    Parameter #15 $phpstormStubsSourceStubber of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber, mixed given.
    Collective
  7. $this->container->getService('0128'),
  8. $this->container->getService('094'),
  9. ['stdClass']
  10. );
  11. }
  1. $this->container->getService('095'),
  2. $this->container->getService('relativePathHelper'),
  3. $this->container->getService('025'),
  4. $this->container->getService('085'),
  5. $this->container->getService('0365'),
  6. $this->container->getService('0128'),
    Parameter #16 $signatureMapProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\SignatureMap\SignatureMapProvider, mixed given.
    Collective
  7. $this->container->getService('094'),
  8. ['stdClass']
  9. );
  10. }
  11. };
  1. $this->container->getService('relativePathHelper'),
  2. $this->container->getService('025'),
  3. $this->container->getService('085'),
  4. $this->container->getService('0365'),
  5. $this->container->getService('0128'),
  6. $this->container->getService('094'),
    Parameter #17 $attributeReflectionFactory of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\AttributeReflectionFactory, mixed given.
    Collective
  7. ['stdClass']
  8. );
  9. }
  10. };
  11. }
  1. public function createService0364(): PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory(
  4. $this->getService('php8PhpParser'),
    Parameter #1 $phpParser of class PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory constructor expects PhpParser\Parser, object given.
    Collective
  5. $this->getService('024'),
  6. $this->getService('026')
  7. );
  8. }
  1. public function createService0364(): PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory(
  4. $this->getService('php8PhpParser'),
  5. $this->getService('024'),
    Parameter #2 $printer of class PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory constructor expects PHPStan\Node\Printer\Printer, object given.
    Collective
  6. $this->getService('026')
  7. );
  8. }
  1. public function createService0364(): PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory(
  4. $this->getService('php8PhpParser'),
  5. $this->getService('024'),
  6. $this->getService('026')
    Parameter #3 $phpVersion of class PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. );
  8. }
  9. public function createService0365(): PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber
  1. public function createService0367(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory(
  4. $this->getService('024'),
    Parameter #1 $printer of class PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory constructor expects PHPStan\Node\Printer\Printer, object given.
    Collective
  5. $this->getService('026')
  6. );
  7. }
  1. public function createService0367(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory
  2. {
  3. return new PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory(
  4. $this->getService('024'),
  5. $this->getService('026')
    Parameter #2 $phpVersion of class PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  6. );
  7. }
  8. public function createService0368(): PHPStan\Reflection\Deprecation\DeprecationProvider
  1. }
  2. public function createService0368(): PHPStan\Reflection\Deprecation\DeprecationProvider
  3. {
  4. return new PHPStan\Reflection\Deprecation\DeprecationProvider($this->getService('075'));
    Parameter #1 $container of class PHPStan\Reflection\Deprecation\DeprecationProvider constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createService0369(): PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter
  7. {
  1. public function createService0369(): PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter
  2. {
  3. return new PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter(
  4. $this->getService('errorFormatter.github'),
    Parameter #1 $githubErrorFormatter of class PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter constructor expects PHPStan\Command\ErrorFormatter\GithubErrorFormatter, object given.
    Collective
  5. $this->getService('errorFormatter.teamcity')
  6. );
  7. }
  1. public function createService0369(): PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter
  2. {
  3. return new PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter(
  4. $this->getService('errorFormatter.github'),
  5. $this->getService('errorFormatter.teamcity')
    Parameter #2 $teamcityErrorFormatter of class PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter constructor expects PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter, object given.
    Collective
  6. );
  7. }
  8. public function createService0370(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule
  1. public function createService0370(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule(
  4. $this->getService('0132'),
    Parameter #1 $classCheck of class PHPStan\Rules\Classes\ExistingClassInClassExtendsRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. true
  7. );
  8. }
  1. public function createService0370(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule(
  4. $this->getService('0132'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\ExistingClassInClassExtendsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. true
  7. );
  8. }
  1. public function createService0371(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule(
  4. $this->getService('0132'),
    Parameter #1 $classCheck of class PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. true
  7. );
  8. }
  1. public function createService0371(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule(
  4. $this->getService('0132'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. true
  7. );
  8. }
  1. public function createService0372(): PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule(
  4. $this->getService('0132'),
    Parameter #1 $classCheck of class PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. true
  7. );
  8. }
  1. public function createService0372(): PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule(
  4. $this->getService('0132'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. true
  7. );
  8. }
  1. public function createService0373(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Classes\ExistingClassInInstanceOfRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. true,
  7. true
  8. );
  9. }
  1. public function createService0373(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Classes\ExistingClassInInstanceOfRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. true,
  7. true
  8. );
  9. }
  1. public function createService0374(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule(
  4. $this->getService('0132'),
    Parameter #1 $classCheck of class PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. true
  7. );
  8. }
  1. public function createService0374(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule(
  4. $this->getService('0132'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. true
  7. );
  8. }
  1. public function createService0375(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule(
  4. $this->getService('0132'),
    Parameter #1 $classCheck of class PHPStan\Rules\Classes\ExistingClassInTraitUseRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. true
  7. );
  8. }
  1. public function createService0375(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule
  2. {
  3. return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule(
  4. $this->getService('0132'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\ExistingClassInTraitUseRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. true
  7. );
  8. }
  1. public function createService0376(): PHPStan\Rules\Classes\InstantiationRule
  2. {
  3. return new PHPStan\Rules\Classes\InstantiationRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\Classes\InstantiationRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0147'),
  7. $this->getService('0132'),
  8. true
  9. );
  1. public function createService0376(): PHPStan\Rules\Classes\InstantiationRule
  2. {
  3. return new PHPStan\Rules\Classes\InstantiationRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\InstantiationRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0147'),
  7. $this->getService('0132'),
  8. true
  9. );
  10. }
  1. public function createService0376(): PHPStan\Rules\Classes\InstantiationRule
  2. {
  3. return new PHPStan\Rules\Classes\InstantiationRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0147'),
    Parameter #3 $check of class PHPStan\Rules\Classes\InstantiationRule constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  7. $this->getService('0132'),
  8. true
  9. );
  10. }
  1. {
  2. return new PHPStan\Rules\Classes\InstantiationRule(
  3. $this->getService('075'),
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0147'),
  6. $this->getService('0132'),
    Parameter #4 $classCheck of class PHPStan\Rules\Classes\InstantiationRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. true
  8. );
  9. }
  1. public function createService0377(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule
  2. {
  3. return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. true,
  7. true
  8. );
  9. }
  1. public function createService0377(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule
  2. {
  3. return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. true,
  7. true
  8. );
  9. }
  1. }
  2. public function createService0378(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule
  3. {
  4. return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false, true);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\CallToNonExistentFunctionRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0379(): PHPStan\Rules\Classes\NewStaticInAbstractClassStaticMethodRule
  7. {
  1. public function createService0381(): PHPStan\Rules\Methods\OverridingMethodRule
  2. {
  3. return new PHPStan\Rules\Methods\OverridingMethodRule(
  4. $this->getService('026'),
    Parameter #1 $phpVersion of class PHPStan\Rules\Methods\OverridingMethodRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. $this->getService('0161'),
  6. true,
  7. $this->getService('0162'),
  8. $this->getService('0163'),
  9. $this->getService('0115'),
  1. public function createService0381(): PHPStan\Rules\Methods\OverridingMethodRule
  2. {
  3. return new PHPStan\Rules\Methods\OverridingMethodRule(
  4. $this->getService('026'),
  5. $this->getService('0161'),
    Parameter #2 $methodSignatureRule of class PHPStan\Rules\Methods\OverridingMethodRule constructor expects PHPStan\Rules\Methods\MethodSignatureRule, object given.
    Collective
  6. true,
  7. $this->getService('0162'),
  8. $this->getService('0163'),
  9. $this->getService('0115'),
  10. false
  1. {
  2. return new PHPStan\Rules\Methods\OverridingMethodRule(
  3. $this->getService('026'),
  4. $this->getService('0161'),
  5. true,
  6. $this->getService('0162'),
    Parameter #4 $methodParameterComparisonHelper of class PHPStan\Rules\Methods\OverridingMethodRule constructor expects PHPStan\Rules\Methods\MethodParameterComparisonHelper, object given.
    Collective
  7. $this->getService('0163'),
  8. $this->getService('0115'),
  9. false
  10. );
  11. }
  1. return new PHPStan\Rules\Methods\OverridingMethodRule(
  2. $this->getService('026'),
  3. $this->getService('0161'),
  4. true,
  5. $this->getService('0162'),
  6. $this->getService('0163'),
    Parameter #5 $methodVisibilityComparisonHelper of class PHPStan\Rules\Methods\OverridingMethodRule constructor expects PHPStan\Rules\Methods\MethodVisibilityComparisonHelper, object given.
    Collective
  7. $this->getService('0115'),
  8. false
  9. );
  10. }
  1. $this->getService('026'),
  2. $this->getService('0161'),
  3. true,
  4. $this->getService('0162'),
  5. $this->getService('0163'),
  6. $this->getService('0115'),
    Parameter #6 $phpClassReflectionExtension of class PHPStan\Rules\Methods\OverridingMethodRule constructor expects PHPStan\Reflection\Php\PhpClassReflectionExtension, object given.
    Collective
  7. false
  8. );
  9. }
  1. public function createService0383(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule
  2. {
  3. return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. false,
  7. true
  8. );
  9. }
  1. public function createService0383(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule
  2. {
  3. return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. false,
  7. true
  8. );
  9. }
  1. public function createService0384(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule
  2. {
  3. return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Namespaces\ExistingNamesInUseRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. false,
  7. true
  8. );
  9. }
  1. public function createService0384(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule
  2. {
  3. return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Namespaces\ExistingNamesInUseRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. false,
  7. true
  8. );
  9. }
  1. }
  2. public function createService0385(): PHPStan\Rules\Properties\AccessPropertiesRule
  3. {
  4. return new PHPStan\Rules\Properties\AccessPropertiesRule($this->getService('0175'));
    Parameter #1 $check of class PHPStan\Rules\Properties\AccessPropertiesRule constructor expects PHPStan\Rules\Properties\AccessPropertiesCheck, object given.
    Collective
  5. }
  6. public function createService0386(): PHPStan\Rules\Properties\AccessStaticPropertiesRule
  7. {
  1. public function createService0386(): PHPStan\Rules\Properties\AccessStaticPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\AccessStaticPropertiesRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Properties\AccessStaticPropertiesRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0182'),
  6. $this->getService('0132'),
  7. true
  8. );
  9. }
  1. public function createService0386(): PHPStan\Rules\Properties\AccessStaticPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\AccessStaticPropertiesRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Properties\AccessStaticPropertiesRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  6. $this->getService('0132'),
  7. true
  8. );
  9. }
  1. public function createService0386(): PHPStan\Rules\Properties\AccessStaticPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\AccessStaticPropertiesRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
  6. $this->getService('0132'),
    Parameter #3 $classCheck of class PHPStan\Rules\Properties\AccessStaticPropertiesRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. true
  8. );
  9. }
  1. public function createService0387(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Properties\ExistingClassesInPropertiesRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. $this->getService('0170'),
  7. $this->getService('026'),
  8. true,
  9. false,
  1. public function createService0387(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\Properties\ExistingClassesInPropertiesRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. $this->getService('0170'),
  7. $this->getService('026'),
  8. true,
  9. false,
  10. true
  1. public function createService0387(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0170'),
    Parameter #3 $unresolvableTypeHelper of class PHPStan\Rules\Properties\ExistingClassesInPropertiesRule constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. $this->getService('026'),
  8. true,
  9. false,
  10. true
  11. );
  1. {
  2. return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0170'),
  6. $this->getService('026'),
    Parameter #4 $phpVersion of class PHPStan\Rules\Properties\ExistingClassesInPropertiesRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. true,
  8. false,
  9. true
  10. );
  11. }
  1. public function createService0388(): PHPStan\Rules\Functions\FunctionCallableRule
  2. {
  3. return new PHPStan\Rules\Functions\FunctionCallableRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\FunctionCallableRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0182'),
  6. $this->getService('026'),
  7. false,
  8. true
  9. );
  1. public function createService0388(): PHPStan\Rules\Functions\FunctionCallableRule
  2. {
  3. return new PHPStan\Rules\Functions\FunctionCallableRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Functions\FunctionCallableRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  6. $this->getService('026'),
  7. false,
  8. true
  9. );
  10. }
  1. public function createService0388(): PHPStan\Rules\Functions\FunctionCallableRule
  2. {
  3. return new PHPStan\Rules\Functions\FunctionCallableRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
  6. $this->getService('026'),
    Parameter #3 $phpVersion of class PHPStan\Rules\Functions\FunctionCallableRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. false,
  8. true
  9. );
  10. }
  1. }
  2. public function createService0389(): PHPStan\Rules\Properties\OverridingPropertyRule
  3. {
  4. return new PHPStan\Rules\Properties\OverridingPropertyRule($this->getService('026'), true, false);
    Parameter #1 $phpVersion of class PHPStan\Rules\Properties\OverridingPropertyRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createService0390(): PHPStan\Rules\Properties\SetPropertyHookParameterRule
  7. {
  1. }
  2. public function createService0390(): PHPStan\Rules\Properties\SetPropertyHookParameterRule
  3. {
  4. return new PHPStan\Rules\Properties\SetPropertyHookParameterRule($this->getService('0164'), true, true);
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Properties\SetPropertyHookParameterRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createService0391(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule
  7. {
  1. public function createService0391(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule(
  4. $this->getService('0182'),
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. $this->getService('0179'),
  6. $this->getService('0180'),
  7. false
  8. );
  9. }
  1. public function createService0391(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule(
  4. $this->getService('0182'),
  5. $this->getService('0179'),
    Parameter #2 $propertyDescriptor of class PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule constructor expects PHPStan\Rules\Properties\PropertyDescriptor, object given.
    Collective
  6. $this->getService('0180'),
  7. false
  8. );
  9. }
  1. public function createService0391(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule(
  4. $this->getService('0182'),
  5. $this->getService('0179'),
  6. $this->getService('0180'),
    Parameter #3 $propertyReflectionFinder of class PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  7. false
  8. );
  9. }
  1. public function createService0392(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule(
  4. $this->getService('0179'),
    Parameter #1 $propertyDescriptor of class PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule constructor expects PHPStan\Rules\Properties\PropertyDescriptor, object given.
    Collective
  5. $this->getService('0180'),
  6. $this->getService('0182'),
  7. false
  8. );
  9. }
  1. public function createService0392(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule(
  4. $this->getService('0179'),
  5. $this->getService('0180'),
    Parameter #2 $propertyReflectionFinder of class PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  6. $this->getService('0182'),
  7. false
  8. );
  9. }
  1. public function createService0392(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule
  2. {
  3. return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule(
  4. $this->getService('0179'),
  5. $this->getService('0180'),
  6. $this->getService('0182'),
    Parameter #3 $ruleLevelHelper of class PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  7. false
  8. );
  9. }
  1. }
  2. public function createService0396(): PHPStan\Rules\InternalTag\RestrictedInternalClassConstantUsageExtension
  3. {
  4. return new PHPStan\Rules\InternalTag\RestrictedInternalClassConstantUsageExtension($this->getService('0157'));
    Parameter #1 $helper of class PHPStan\Rules\InternalTag\RestrictedInternalClassConstantUsageExtension constructor expects PHPStan\Rules\InternalTag\RestrictedInternalUsageHelper, object given.
    Collective
  5. }
  6. public function createService0397(): PHPStan\Rules\InternalTag\RestrictedInternalClassNameUsageExtension
  7. {
  1. }
  2. public function createService0397(): PHPStan\Rules\InternalTag\RestrictedInternalClassNameUsageExtension
  3. {
  4. return new PHPStan\Rules\InternalTag\RestrictedInternalClassNameUsageExtension($this->getService('0157'));
    Parameter #1 $helper of class PHPStan\Rules\InternalTag\RestrictedInternalClassNameUsageExtension constructor expects PHPStan\Rules\InternalTag\RestrictedInternalUsageHelper, object given.
    Collective
  5. }
  6. public function createService0398(): PHPStan\Rules\InternalTag\RestrictedInternalFunctionUsageExtension
  7. {
  1. }
  2. public function createService0398(): PHPStan\Rules\InternalTag\RestrictedInternalFunctionUsageExtension
  3. {
  4. return new PHPStan\Rules\InternalTag\RestrictedInternalFunctionUsageExtension($this->getService('0157'));
    Parameter #1 $helper of class PHPStan\Rules\InternalTag\RestrictedInternalFunctionUsageExtension constructor expects PHPStan\Rules\InternalTag\RestrictedInternalUsageHelper, object given.
    Collective
  5. }
  6. public function createService0399(): PHPStan\Rules\Constants\ConstantRule
  7. {
  1. }
  2. public function createService0400(): PHPStan\Rules\Classes\MixinRule
  3. {
  4. return new PHPStan\Rules\Classes\MixinRule($this->getService('0137'));
    Parameter #1 $check of class PHPStan\Rules\Classes\MixinRule constructor expects PHPStan\Rules\Classes\MixinCheck, object given.
    Collective
  5. }
  6. public function createService0401(): PHPStan\Rules\PhpDoc\RequireExtendsCheck
  7. {
  1. }
  2. public function createService0401(): PHPStan\Rules\PhpDoc\RequireExtendsCheck
  3. {
  4. return new PHPStan\Rules\PhpDoc\RequireExtendsCheck($this->getService('0132'), true, true);
    Parameter #1 $classCheck of class PHPStan\Rules\PhpDoc\RequireExtendsCheck constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  5. }
  6. public function createService0402(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule
  7. {
  1. public function createService0402(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0132'),
  6. true,
  7. true
  8. );
  9. }
  1. public function createService0402(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
    Parameter #2 $classCheck of class PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  6. true,
  7. true
  8. );
  9. }
  1. }
  2. public function createService0403(): PHPStan\Rules\Functions\CallCallablesRule
  3. {
  4. return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('0147'), $this->getService('0182'), true);
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Functions\CallCallablesRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0404(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule
  7. {
  1. }
  2. public function createService0403(): PHPStan\Rules\Functions\CallCallablesRule
  3. {
  4. return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('0147'), $this->getService('0182'), true);
    Parameter #1 $check of class PHPStan\Rules\Functions\CallCallablesRule constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  5. }
  6. public function createService0404(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule
  7. {
  1. }
  2. public function createService0404(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('031'), $this->getService('034'));
    Parameter #1 $phpDocLexer of class PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule constructor expects PHPStan\PhpDocParser\Lexer\Lexer, object given.
    Collective
  5. }
  6. public function createService0405(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule
  7. {
  1. }
  2. public function createService0404(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('031'), $this->getService('034'));
    Parameter #2 $phpDocParser of class PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule constructor expects PHPStan\PhpDocParser\Parser\PhpDocParser, object given.
    Collective
  5. }
  6. public function createService0405(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule
  7. {
  1. public function createService0405(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule(
  4. $this->getService('0185'),
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0132'),
  7. $this->getService('0153'),
  8. $this->getService('0164'),
  9. $this->getService('0170'),
  1. public function createService0405(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule(
  4. $this->getService('0185'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0132'),
  7. $this->getService('0153'),
  8. $this->getService('0164'),
  9. $this->getService('0170'),
  10. true,
  1. public function createService0405(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule(
  4. $this->getService('0185'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0132'),
    Parameter #3 $classCheck of class PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. $this->getService('0153'),
  8. $this->getService('0164'),
  9. $this->getService('0170'),
  10. true,
  11. true,
  1. {
  2. return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule(
  3. $this->getService('0185'),
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0132'),
  6. $this->getService('0153'),
    Parameter #4 $genericObjectTypeCheck of class PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  7. $this->getService('0164'),
  8. $this->getService('0170'),
  9. true,
  10. true,
  11. true
  1. return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule(
  2. $this->getService('0185'),
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0132'),
  5. $this->getService('0153'),
  6. $this->getService('0164'),
    Parameter #5 $missingTypehintCheck of class PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  7. $this->getService('0170'),
  8. true,
  9. true,
  10. true
  11. );
  1. $this->getService('0185'),
  2. $this->getService('reflectionProvider'),
  3. $this->getService('0132'),
  4. $this->getService('0153'),
  5. $this->getService('0164'),
  6. $this->getService('0170'),
    Parameter #6 $unresolvableTypeHelper of class PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  7. true,
  8. true,
  9. true
  10. );
  11. }
  1. }
  2. public function createService0406(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('031'), $this->getService('034'));
    Parameter #2 $phpDocParser of class PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule constructor expects PHPStan\PhpDocParser\Parser\PhpDocParser, object given.
    Collective
  5. }
  6. public function createService0407(): PHPStan\Rules\InternalTag\RestrictedInternalPropertyUsageExtension
  7. {
  1. }
  2. public function createService0406(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('031'), $this->getService('034'));
    Parameter #1 $phpDocLexer of class PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule constructor expects PHPStan\PhpDocParser\Lexer\Lexer, object given.
    Collective
  5. }
  6. public function createService0407(): PHPStan\Rules\InternalTag\RestrictedInternalPropertyUsageExtension
  7. {
  1. }
  2. public function createService0407(): PHPStan\Rules\InternalTag\RestrictedInternalPropertyUsageExtension
  3. {
  4. return new PHPStan\Rules\InternalTag\RestrictedInternalPropertyUsageExtension($this->getService('0157'));
    Parameter #1 $helper of class PHPStan\Rules\InternalTag\RestrictedInternalPropertyUsageExtension constructor expects PHPStan\Rules\InternalTag\RestrictedInternalUsageHelper, object given.
    Collective
  5. }
  6. public function createService0408(): PHPStan\Rules\InternalTag\RestrictedInternalMethodUsageExtension
  7. {
  1. }
  2. public function createService0408(): PHPStan\Rules\InternalTag\RestrictedInternalMethodUsageExtension
  3. {
  4. return new PHPStan\Rules\InternalTag\RestrictedInternalMethodUsageExtension($this->getService('0157'));
    Parameter #1 $helper of class PHPStan\Rules\InternalTag\RestrictedInternalMethodUsageExtension constructor expects PHPStan\Rules\InternalTag\RestrictedInternalUsageHelper, object given.
    Collective
  5. }
  6. public function createService0409(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule
  7. {
  1. }
  2. public function createService0409(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule
  3. {
  4. return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule($this->getService('0182'), true);
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0410(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule
  7. {
  1. }
  2. public function createService0411(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule
  3. {
  4. return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('0182'), $this->getService('0131'), true);
    Parameter #2 $nonexistentOffsetInArrayDimFetchCheck of class PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule constructor expects PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck, object given.
    Collective
  5. }
  6. public function createService0412(): PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule
  7. {
  1. }
  2. public function createService0411(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule
  3. {
  4. return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('0182'), $this->getService('0131'), true);
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0412(): PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule
  7. {
  1. public function createService0412(): PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule
  2. {
  3. return new PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule(
  4. $this->getService('exceptionTypeResolver'),
    Parameter #1 $exceptionTypeResolver of class PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule constructor expects PHPStan\Rules\Exceptions\ExceptionTypeResolver, object given.
    Collective
  5. false
  6. );
  7. }
  1. public function createService0413(): PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule
  2. {
  3. return new PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule(
  4. $this->getService('exceptionTypeResolver'),
    Parameter #1 $exceptionTypeResolver of class PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule constructor expects PHPStan\Rules\Exceptions\ExceptionTypeResolver, object given.
    Collective
  5. false
  6. );
  7. }
  1. public function createService0414(): PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule
  2. {
  3. return new PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule(
  4. $this->getService('exceptionTypeResolver'),
    Parameter #1 $exceptionTypeResolver of class PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule constructor expects PHPStan\Rules\Exceptions\ExceptionTypeResolver, object given.
    Collective
  5. false
  6. );
  7. }
  1. }
  2. public function createService0415(): PHPStan\Rules\Generators\YieldFromTypeRule
  3. {
  4. return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('0182'), true);
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Generators\YieldFromTypeRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createService0416(): PHPStan\Rules\Generators\YieldInGeneratorRule
  7. {
  1. }
  2. public function createService0418(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('0139'), true, false, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\BooleanAndConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0419(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule
  7. {
  1. }
  2. public function createService0419(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('0139'), true, false, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\BooleanOrConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0420(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule
  7. {
  1. }
  2. public function createService0420(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('0139'), true, false, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\BooleanNotConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0421(): PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector
  7. {
  1. }
  2. public function createService0422(): PHPStan\Rules\DeadCode\PossiblyPureNewCollector
  3. {
  4. return new PHPStan\Rules\DeadCode\PossiblyPureNewCollector($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\DeadCode\PossiblyPureNewCollector constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0423(): PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector
  7. {
  1. }
  2. public function createService0424(): PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector
  3. {
  4. return new PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0425(): PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector
  7. {
  1. }
  2. public function createService0428(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule
  3. {
  4. return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('0178'), [], [], false);
    Parameter #1 $extensionProvider of class PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule constructor expects PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider, object given.
    Collective
  5. }
  6. public function createService0429(): PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule
  7. {
  1. }
  2. public function createService0429(): PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule($this->getService('0139'), true, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0430(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule
  7. {
  1. }
  2. public function createService0430(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('0139'), true, false, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\ElseIfConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0431(): PHPStan\Rules\Comparison\IfConstantConditionRule
  7. {
  1. }
  2. public function createService0431(): PHPStan\Rules\Comparison\IfConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('0139'), true, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\IfConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0432(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule
  7. {
  1. }
  2. public function createService0432(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule
  3. {
  4. return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('0140'), true, false, true);
    Parameter #1 $impossibleCheckTypeHelper of class PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule constructor expects PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper, object given.
    Collective
  5. }
  6. public function createService0433(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule
  7. {
  1. }
  2. public function createService0433(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule
  3. {
  4. return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('0140'), true, false, true);
    Parameter #1 $impossibleCheckTypeHelper of class PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule constructor expects PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper, object given.
    Collective
  5. }
  6. public function createService0434(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule
  7. {
  1. }
  2. public function createService0434(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule
  3. {
  4. return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('0140'), true, false, true);
    Parameter #1 $impossibleCheckTypeHelper of class PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule constructor expects PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper, object given.
    Collective
  5. }
  6. public function createService0435(): PHPStan\Rules\Comparison\LogicalXorConstantConditionRule
  7. {
  1. }
  2. public function createService0435(): PHPStan\Rules\Comparison\LogicalXorConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\LogicalXorConstantConditionRule($this->getService('0139'), true, false, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\LogicalXorConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0436(): PHPStan\Rules\Comparison\MatchExpressionRule
  7. {
  1. }
  2. public function createService0436(): PHPStan\Rules\Comparison\MatchExpressionRule
  3. {
  4. return new PHPStan\Rules\Comparison\MatchExpressionRule($this->getService('0139'), false, true);
    Parameter #1 $constantConditionRuleHelper of class PHPStan\Rules\Comparison\MatchExpressionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0437(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule
  7. {
  1. }
  2. public function createService0438(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule
  3. {
  4. return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule($this->getService('064'), true, false, true);
    Parameter #1 $richerScopeGetTypeHelper of class PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule constructor expects PHPStan\Analyser\RicherScopeGetTypeHelper, object given.
    Collective
  5. }
  6. public function createService0439(): PHPStan\Rules\Comparison\ConstantLooseComparisonRule
  7. {
  1. }
  2. public function createService0440(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('0139'), true, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0441(): PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule
  7. {
  1. }
  2. public function createService0441(): PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule($this->getService('0139'), true, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0442(): PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule
  7. {
  1. }
  2. public function createService0442(): PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule
  3. {
  4. return new PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule($this->getService('0139'), true, true);
    Parameter #1 $helper of class PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule constructor expects PHPStan\Rules\Comparison\ConstantConditionRuleHelper, object given.
    Collective
  5. }
  6. public function createService0443(): PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule
  7. {
  1. }
  2. public function createService0443(): PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule
  3. {
  4. return new PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule($this->getService('0146'));
    Parameter #1 $check of class PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule constructor expects PHPStan\Rules\Exceptions\TooWideThrowTypeCheck, object given.
    Collective
  5. }
  6. public function createService0444(): PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule
  7. {
  1. }
  2. public function createService0444(): PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule
  3. {
  4. return new PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule($this->getService('0185'), $this->getService('0146'));
    Parameter #2 $check of class PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule constructor expects PHPStan\Rules\Exceptions\TooWideThrowTypeCheck, object given.
    Collective
  5. }
  6. public function createService0445(): PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule
  7. {
  1. }
  2. public function createService0444(): PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule
  3. {
  4. return new PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule($this->getService('0185'), $this->getService('0146'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createService0445(): PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule
  7. {
  1. }
  2. public function createService0445(): PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule
  3. {
  4. return new PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule($this->getService('0185'), $this->getService('0146'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createService0446(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule
  7. {
  1. }
  2. public function createService0445(): PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule
  3. {
  4. return new PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule($this->getService('0185'), $this->getService('0146'));
    Parameter #2 $check of class PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule constructor expects PHPStan\Rules\Exceptions\TooWideThrowTypeCheck, object given.
    Collective
  5. }
  6. public function createService0446(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule
  7. {
  1. }
  2. public function createService0450(): PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule
  3. {
  4. return new PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule($this->getService('exceptionTypeResolver'), true);
    Parameter #1 $exceptionTypeResolver of class PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule constructor expects PHPStan\Rules\Exceptions\ExceptionTypeResolver, object given.
    Collective
  5. }
  6. public function createService0451(): PHPStan\Rules\Functions\RandomIntParametersRule
  7. {
  1. public function createService0451(): PHPStan\Rules\Functions\RandomIntParametersRule
  2. {
  3. return new PHPStan\Rules\Functions\RandomIntParametersRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\RandomIntParametersRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('026'),
  6. true
  7. );
  8. }
  1. public function createService0451(): PHPStan\Rules\Functions\RandomIntParametersRule
  2. {
  3. return new PHPStan\Rules\Functions\RandomIntParametersRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('026'),
    Parameter #2 $phpVersion of class PHPStan\Rules\Functions\RandomIntParametersRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  6. true
  7. );
  8. }
  1. }
  2. public function createService0452(): PHPStan\Rules\Functions\ArrayFilterRule
  3. {
  4. return new PHPStan\Rules\Functions\ArrayFilterRule($this->getService('reflectionProvider'), true, true);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\ArrayFilterRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0453(): PHPStan\Rules\Functions\ArrayValuesRule
  7. {
  1. }
  2. public function createService0453(): PHPStan\Rules\Functions\ArrayValuesRule
  3. {
  4. return new PHPStan\Rules\Functions\ArrayValuesRule($this->getService('reflectionProvider'), true, true);
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\ArrayValuesRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0454(): PHPStan\Rules\Functions\ParameterCastableToNumberRule
  7. {
  1. public function createService0454(): PHPStan\Rules\Functions\ParameterCastableToNumberRule
  2. {
  3. return new PHPStan\Rules\Functions\ParameterCastableToNumberRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\ParameterCastableToNumberRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0150')
  6. );
  7. }
  1. public function createService0454(): PHPStan\Rules\Functions\ParameterCastableToNumberRule
  2. {
  3. return new PHPStan\Rules\Functions\ParameterCastableToNumberRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0150')
    Parameter #2 $parameterCastableToStringCheck of class PHPStan\Rules\Functions\ParameterCastableToNumberRule constructor expects PHPStan\Rules\ParameterCastableToStringCheck, object given.
    Collective
  6. );
  7. }
  8. public function createService0455(): Symplify\PHPStanRules\NodeTraverser\SimpleCallableNodeTraverser
  1. }
  2. public function createService0457(): Symplify\PHPStanRules\Reflection\ReflectionParser
  3. {
  4. return new Symplify\PHPStanRules\Reflection\ReflectionParser($this->getService('0459'));
    Parameter #1 $typeAwareNodeFinder of class Symplify\PHPStanRules\Reflection\ReflectionParser constructor expects Symplify\PHPStanRules\NodeFinder\TypeAwareNodeFinder, object given.
    Collective
  5. }
  6. public function createService0458(): Symplify\PHPStanRules\Matcher\ArrayStringAndFnMatcher
  7. {
  1. }
  2. public function createService0464(): Symplify\PHPStanRules\NodeAnalyzer\EnumAnalyzer
  3. {
  4. return new Symplify\PHPStanRules\NodeAnalyzer\EnumAnalyzer($this->getService('0466'));
    Parameter #1 $barePhpDocParser of class Symplify\PHPStanRules\NodeAnalyzer\EnumAnalyzer constructor expects Symplify\PHPStanRules\PhpDoc\BarePhpDocParser, object given.
    Collective
  5. }
  6. public function createService0465(): Symplify\PHPStanRules\ParentClassMethodNodeResolver
  7. {
  1. public function createService0465(): Symplify\PHPStanRules\ParentClassMethodNodeResolver
  2. {
  3. return new Symplify\PHPStanRules\ParentClassMethodNodeResolver(
  4. $this->getService('0457'),
    Parameter #1 $reflectionParser of class Symplify\PHPStanRules\ParentClassMethodNodeResolver constructor expects Symplify\PHPStanRules\Reflection\ReflectionParser, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createService0465(): Symplify\PHPStanRules\ParentClassMethodNodeResolver
  2. {
  3. return new Symplify\PHPStanRules\ParentClassMethodNodeResolver(
  4. $this->getService('0457'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class Symplify\PHPStanRules\ParentClassMethodNodeResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createService0466(): Symplify\PHPStanRules\PhpDoc\BarePhpDocParser
  1. }
  2. public function createService0466(): Symplify\PHPStanRules\PhpDoc\BarePhpDocParser
  3. {
  4. return new Symplify\PHPStanRules\PhpDoc\BarePhpDocParser($this->getService('034'), $this->getService('031'));
    Parameter #2 $lexer of class Symplify\PHPStanRules\PhpDoc\BarePhpDocParser constructor expects PHPStan\PhpDocParser\Lexer\Lexer, object given.
    Collective
  5. }
  6. public function createService0467(): Symplify\PHPStanRules\PhpDoc\PhpDocResolver
  7. {
  1. }
  2. public function createService0466(): Symplify\PHPStanRules\PhpDoc\BarePhpDocParser
  3. {
  4. return new Symplify\PHPStanRules\PhpDoc\BarePhpDocParser($this->getService('034'), $this->getService('031'));
    Parameter #1 $phpDocParser of class Symplify\PHPStanRules\PhpDoc\BarePhpDocParser constructor expects PHPStan\PhpDocParser\Parser\PhpDocParser, object given.
    Collective
  5. }
  6. public function createService0467(): Symplify\PHPStanRules\PhpDoc\PhpDocResolver
  7. {
  1. }
  2. public function createService0467(): Symplify\PHPStanRules\PhpDoc\PhpDocResolver
  3. {
  4. return new Symplify\PHPStanRules\PhpDoc\PhpDocResolver($this->getService('0185'));
    Parameter #1 $fileTypeMapper of class Symplify\PHPStanRules\PhpDoc\PhpDocResolver constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createService0468(): Symplify\PHPStanRules\TypeAnalyzer\CallableTypeAnalyzer
  7. {
  1. }
  2. public function createService0470(): Symplify\PHPStanRules\Symfony\Reflection\ClassConstructorTypesResolver
  3. {
  4. return new Symplify\PHPStanRules\Symfony\Reflection\ClassConstructorTypesResolver($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class Symplify\PHPStanRules\Symfony\Reflection\ClassConstructorTypesResolver constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createService0471(): Symplify\PHPStanRules\Rules\MaximumIgnoredErrorCountRule
  7. {
  1. 'property_exists',
  2. 'spl_autoload_register',
  3. 'spl_autoload_unregister',
  4. 'array_walk',
  5. ],
  6. $this->getService('0458'),
    Parameter #2 $arrayStringAndFnMatcher of class Symplify\PHPStanRules\Rules\ForbiddenFuncCallRule constructor expects Symplify\PHPStanRules\Matcher\ArrayStringAndFnMatcher, object given.
    Collective
  7. $this->getService('0461')
  8. );
  9. }
  1. 'spl_autoload_register',
  2. 'spl_autoload_unregister',
  3. 'array_walk',
  4. ],
  5. $this->getService('0458'),
  6. $this->getService('0461')
    Parameter #3 $requiredWithMessageFormatter of class Symplify\PHPStanRules\Rules\ForbiddenFuncCallRule constructor expects Symplify\PHPStanRules\Formatter\RequiredWithMessageFormatter, object given.
    Collective
  7. );
  8. }
  9. public function createService0475(): Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule
  1. public function createService0475(): Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule
  2. {
  3. return new Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule(
  4. $this->getService('0467'),
    Parameter #1 $phpDocResolver of class Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule constructor expects Symplify\PHPStanRules\PhpDoc\PhpDocResolver, object given.
    Collective
  5. $this->getService('0460'),
  6. ['PHPStan\Rules\Rule', 'PHP_CodeSniffer\Sniffs\Sniff', 'PHP_CodeSniffer\Fixer']
  7. );
  8. }
  1. public function createService0475(): Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule
  2. {
  3. return new Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule(
  4. $this->getService('0467'),
  5. $this->getService('0460'),
    Parameter #2 $seePhpDocTagNodesFinder of class Symplify\PHPStanRules\Rules\SeeAnnotationToTestRule constructor expects Symplify\PHPStanRules\PhpDoc\SeePhpDocTagNodesFinder, object given.
    Collective
  6. ['PHPStan\Rules\Rule', 'PHP_CodeSniffer\Sniffs\Sniff', 'PHP_CodeSniffer\Fixer']
  7. );
  8. }
  1. public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->getService('0122'),
    Parameter #1 $reflectionProviderProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  5. $this->getService('096'),
  6. $this->getService('078'),
  7. $this->getService('betterReflectionReflector'),
  8. $this->getService('0185'),
  9. $this->getService('036'),
  1. public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->getService('0122'),
  5. $this->getService('096'),
    Parameter #2 $initializerExprTypeResolver of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  6. $this->getService('078'),
  7. $this->getService('betterReflectionReflector'),
  8. $this->getService('0185'),
  9. $this->getService('036'),
  10. $this->getService('0368'),
  1. public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider
  2. {
  3. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  4. $this->getService('0122'),
  5. $this->getService('096'),
  6. $this->getService('078'),
    Parameter #3 $classReflectionExtensionRegistryProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider, object given.
    Collective
  7. $this->getService('betterReflectionReflector'),
  8. $this->getService('0185'),
  9. $this->getService('036'),
  10. $this->getService('0368'),
  11. $this->getService('026'),
  1. {
  2. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  3. $this->getService('0122'),
  4. $this->getService('096'),
  5. $this->getService('078'),
  6. $this->getService('betterReflectionReflector'),
    Parameter #4 $reflector of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\BetterReflection\Reflector\Reflector, object given.
    Collective
  7. $this->getService('0185'),
  8. $this->getService('036'),
  9. $this->getService('0368'),
  10. $this->getService('026'),
  11. $this->getService('0123'),
  1. return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider(
  2. $this->getService('0122'),
  3. $this->getService('096'),
  4. $this->getService('078'),
  5. $this->getService('betterReflectionReflector'),
  6. $this->getService('0185'),
    Parameter #5 $fileTypeMapper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  7. $this->getService('036'),
  8. $this->getService('0368'),
  9. $this->getService('026'),
  10. $this->getService('0123'),
  11. $this->getService('stubPhpDocProvider'),
  1. $this->getService('0122'),
  2. $this->getService('096'),
  3. $this->getService('078'),
  4. $this->getService('betterReflectionReflector'),
  5. $this->getService('0185'),
  6. $this->getService('036'),
    Parameter #6 $phpDocInheritanceResolver of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\PhpDoc\PhpDocInheritanceResolver, object given.
    Collective
  7. $this->getService('0368'),
  8. $this->getService('026'),
  9. $this->getService('0123'),
  10. $this->getService('stubPhpDocProvider'),
  11. $this->getService('095'),
  1. $this->getService('096'),
  2. $this->getService('078'),
  3. $this->getService('betterReflectionReflector'),
  4. $this->getService('0185'),
  5. $this->getService('036'),
  6. $this->getService('0368'),
    Parameter #7 $deprecationProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\Deprecation\DeprecationProvider, object given.
    Collective
  7. $this->getService('026'),
  8. $this->getService('0123'),
  9. $this->getService('stubPhpDocProvider'),
  10. $this->getService('095'),
  11. $this->getService('relativePathHelper'),
  1. $this->getService('078'),
  2. $this->getService('betterReflectionReflector'),
  3. $this->getService('0185'),
  4. $this->getService('036'),
  5. $this->getService('0368'),
  6. $this->getService('026'),
    Parameter #8 $phpVersion of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. $this->getService('0123'),
  8. $this->getService('stubPhpDocProvider'),
  9. $this->getService('095'),
  10. $this->getService('relativePathHelper'),
  11. $this->getService('025'),
  1. $this->getService('betterReflectionReflector'),
  2. $this->getService('0185'),
  3. $this->getService('036'),
  4. $this->getService('0368'),
  5. $this->getService('026'),
  6. $this->getService('0123'),
    Parameter #9 $nativeFunctionReflectionProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider, object given.
    Collective
  7. $this->getService('stubPhpDocProvider'),
  8. $this->getService('095'),
  9. $this->getService('relativePathHelper'),
  10. $this->getService('025'),
  11. $this->getService('085'),
  1. $this->getService('0185'),
  2. $this->getService('036'),
  3. $this->getService('0368'),
  4. $this->getService('026'),
  5. $this->getService('0123'),
  6. $this->getService('stubPhpDocProvider'),
    Parameter #10 $stubPhpDocProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\PhpDoc\StubPhpDocProvider, object given.
    Collective
  7. $this->getService('095'),
  8. $this->getService('relativePathHelper'),
  9. $this->getService('025'),
  10. $this->getService('085'),
  11. $this->getService('0365'),
  1. $this->getService('036'),
  2. $this->getService('0368'),
  3. $this->getService('026'),
  4. $this->getService('0123'),
  5. $this->getService('stubPhpDocProvider'),
  6. $this->getService('095'),
    Parameter #11 $functionReflectionFactory of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\FunctionReflectionFactory, object given.
    Collective
  7. $this->getService('relativePathHelper'),
  8. $this->getService('025'),
  9. $this->getService('085'),
  10. $this->getService('0365'),
  11. $this->getService('0128'),
  1. $this->getService('0368'),
  2. $this->getService('026'),
  3. $this->getService('0123'),
  4. $this->getService('stubPhpDocProvider'),
  5. $this->getService('095'),
  6. $this->getService('relativePathHelper'),
    Parameter #12 $relativePathHelper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  7. $this->getService('025'),
  8. $this->getService('085'),
  9. $this->getService('0365'),
  10. $this->getService('0128'),
  11. $this->getService('094'),
  1. $this->getService('026'),
  2. $this->getService('0123'),
  3. $this->getService('stubPhpDocProvider'),
  4. $this->getService('095'),
  5. $this->getService('relativePathHelper'),
  6. $this->getService('025'),
    Parameter #13 $anonymousClassNameHelper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Broker\AnonymousClassNameHelper, object given.
    Collective
  7. $this->getService('085'),
  8. $this->getService('0365'),
  9. $this->getService('0128'),
  10. $this->getService('094'),
  11. ['stdClass']
  1. $this->getService('0123'),
  2. $this->getService('stubPhpDocProvider'),
  3. $this->getService('095'),
  4. $this->getService('relativePathHelper'),
  5. $this->getService('025'),
  6. $this->getService('085'),
    Parameter #14 $fileHelper of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\File\FileHelper, object given.
    Collective
  7. $this->getService('0365'),
  8. $this->getService('0128'),
  9. $this->getService('094'),
  10. ['stdClass']
  11. );
  1. $this->getService('stubPhpDocProvider'),
  2. $this->getService('095'),
  3. $this->getService('relativePathHelper'),
  4. $this->getService('025'),
  5. $this->getService('085'),
  6. $this->getService('0365'),
    Parameter #15 $phpstormStubsSourceStubber of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber, object given.
    Collective
  7. $this->getService('0128'),
  8. $this->getService('094'),
  9. ['stdClass']
  10. );
  11. }
  1. $this->getService('095'),
  2. $this->getService('relativePathHelper'),
  3. $this->getService('025'),
  4. $this->getService('085'),
  5. $this->getService('0365'),
  6. $this->getService('0128'),
    Parameter #16 $signatureMapProvider of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\SignatureMap\SignatureMapProvider, object given.
    Collective
  7. $this->getService('094'),
  8. ['stdClass']
  9. );
  10. }
  1. $this->getService('relativePathHelper'),
  2. $this->getService('025'),
  3. $this->getService('085'),
  4. $this->getService('0365'),
  5. $this->getService('0128'),
  6. $this->getService('094'),
    Parameter #17 $attributeReflectionFactory of class PHPStan\Reflection\BetterReflection\BetterReflectionProvider constructor expects PHPStan\Reflection\AttributeReflectionFactory, object given.
    Collective
  7. ['stdClass']
  8. );
  9. }
  1. }
  2. public function createServiceBetterReflectionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector
  3. {
  4. return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector($this->getService('originalBetterReflectionReflector'));
    Parameter #1 $reflector of class PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector constructor expects PHPStan\BetterReflection\Reflector\Reflector, object given.
    Collective
  5. }
  6. public function createServiceBetterReflectionSourceLocator(): PHPStan\BetterReflection\SourceLocator\Type\SourceLocator
  7. {
  1. }
  2. public function createServiceCurrentPhpVersionPhpParserFactory(): PHPStan\Parser\PhpParserFactory
  3. {
  4. return new PHPStan\Parser\PhpParserFactory($this->getService('currentPhpVersionLexer'), $this->getService('026'));
    Parameter #2 $phpVersion of class PHPStan\Parser\PhpParserFactory constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser
  7. {
  1. }
  2. public function createServiceCurrentPhpVersionPhpParserFactory(): PHPStan\Parser\PhpParserFactory
  3. {
  4. return new PHPStan\Parser\PhpParserFactory($this->getService('currentPhpVersionLexer'), $this->getService('026'));
    Parameter #1 $lexer of class PHPStan\Parser\PhpParserFactory constructor expects PhpParser\Lexer, object given.
    Collective
  5. }
  6. public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser
  7. {
  1. public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser
  2. {
  3. return new PHPStan\Parser\RichParser(
  4. $this->getService('currentPhpVersionPhpParser'),
    Parameter #1 $parser of class PHPStan\Parser\RichParser constructor expects PhpParser\Parser, object given.
    Collective
  5. $this->getService('03'),
  6. $this->getService('075'),
  7. $this->getService('056')
  8. );
  9. }
  1. public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser
  2. {
  3. return new PHPStan\Parser\RichParser(
  4. $this->getService('currentPhpVersionPhpParser'),
  5. $this->getService('03'),
    Parameter #2 $nameResolver of class PHPStan\Parser\RichParser constructor expects PhpParser\NodeVisitor\NameResolver, object given.
    Collective
  6. $this->getService('075'),
  7. $this->getService('056')
  8. );
  9. }
  1. public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser
  2. {
  3. return new PHPStan\Parser\RichParser(
  4. $this->getService('currentPhpVersionPhpParser'),
  5. $this->getService('03'),
  6. $this->getService('075'),
    Parameter #3 $container of class PHPStan\Parser\RichParser constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  7. $this->getService('056')
  8. );
  9. }
  1. {
  2. return new PHPStan\Parser\RichParser(
  3. $this->getService('currentPhpVersionPhpParser'),
  4. $this->getService('03'),
  5. $this->getService('075'),
  6. $this->getService('056')
    Parameter #4 $ignoreLexer of class PHPStan\Parser\RichParser constructor expects PHPStan\Analyser\Ignore\IgnoreLexer, object given.
    Collective
  7. );
  8. }
  9. public function createServiceCurrentPhpVersionSimpleDirectParser(): PHPStan\Parser\SimpleParser
  1. public function createServiceCurrentPhpVersionSimpleDirectParser(): PHPStan\Parser\SimpleParser
  2. {
  3. return new PHPStan\Parser\SimpleParser(
  4. $this->getService('currentPhpVersionPhpParser'),
    Parameter #1 $parser of class PHPStan\Parser\SimpleParser constructor expects PhpParser\Parser, object given.
    Collective
  5. $this->getService('03'),
  6. $this->getService('021'),
  7. $this->getService('022')
  8. );
  9. }
  1. }
  2. public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\CleaningParser
  3. {
  4. return new PHPStan\Parser\CleaningParser($this->getService('currentPhpVersionSimpleDirectParser'), $this->getService('026'));
    Parameter #2 $phpVersion of class PHPStan\Parser\CleaningParser constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceDefaultAnalysisParser(): PHPStan\Parser\CachedParser
  7. {
  1. }
  2. public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\CleaningParser
  3. {
  4. return new PHPStan\Parser\CleaningParser($this->getService('currentPhpVersionSimpleDirectParser'), $this->getService('026'));
    Parameter #1 $wrappedParser of class PHPStan\Parser\CleaningParser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  5. }
  6. public function createServiceDefaultAnalysisParser(): PHPStan\Parser\CachedParser
  7. {
  1. }
  2. public function createServiceDefaultAnalysisParser(): PHPStan\Parser\CachedParser
  3. {
  4. return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 256);
    Parameter #1 $originalParser of class PHPStan\Parser\CachedParser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  5. }
  6. public function createServiceErrorFormatter__checkstyle(): PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter
  7. {
  1. }
  2. public function createServiceErrorFormatter__checkstyle(): PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter
  3. {
  4. return new PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter($this->getService('simpleRelativePathHelper'));
    Parameter #1 $relativePathHelper of class PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. }
  6. public function createServiceErrorFormatter__github(): PHPStan\Command\ErrorFormatter\GithubErrorFormatter
  7. {
  1. }
  2. public function createServiceErrorFormatter__github(): PHPStan\Command\ErrorFormatter\GithubErrorFormatter
  3. {
  4. return new PHPStan\Command\ErrorFormatter\GithubErrorFormatter($this->getService('simpleRelativePathHelper'));
    Parameter #1 $relativePathHelper of class PHPStan\Command\ErrorFormatter\GithubErrorFormatter constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. }
  6. public function createServiceErrorFormatter__gitlab(): PHPStan\Command\ErrorFormatter\GitlabErrorFormatter
  7. {
  1. }
  2. public function createServiceErrorFormatter__gitlab(): PHPStan\Command\ErrorFormatter\GitlabErrorFormatter
  3. {
  4. return new PHPStan\Command\ErrorFormatter\GitlabErrorFormatter($this->getService('simpleRelativePathHelper'));
    Parameter #1 $relativePathHelper of class PHPStan\Command\ErrorFormatter\GitlabErrorFormatter constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. }
  6. public function createServiceErrorFormatter__json(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter
  7. {
  1. }
  2. public function createServiceErrorFormatter__junit(): PHPStan\Command\ErrorFormatter\JunitErrorFormatter
  3. {
  4. return new PHPStan\Command\ErrorFormatter\JunitErrorFormatter($this->getService('simpleRelativePathHelper'));
    Parameter #1 $relativePathHelper of class PHPStan\Command\ErrorFormatter\JunitErrorFormatter constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. }
  6. public function createServiceErrorFormatter__prettyJson(): PHPStan\Command\ErrorFormatter\JsonErrorFormatter
  7. {
  1. public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter
  2. {
  3. return new PHPStan\Command\ErrorFormatter\TableErrorFormatter(
  4. $this->getService('relativePathHelper'),
    Parameter #1 $relativePathHelper of class PHPStan\Command\ErrorFormatter\TableErrorFormatter constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. $this->getService('simpleRelativePathHelper'),
  6. $this->getService('0369'),
  7. true,
  8. null,
  9. null
  1. public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter
  2. {
  3. return new PHPStan\Command\ErrorFormatter\TableErrorFormatter(
  4. $this->getService('relativePathHelper'),
  5. $this->getService('simpleRelativePathHelper'),
    Parameter #2 $simpleRelativePathHelper of class PHPStan\Command\ErrorFormatter\TableErrorFormatter constructor expects PHPStan\File\SimpleRelativePathHelper, object given.
    Collective
  6. $this->getService('0369'),
  7. true,
  8. null,
  9. null
  10. );
  1. public function createServiceErrorFormatter__table(): PHPStan\Command\ErrorFormatter\TableErrorFormatter
  2. {
  3. return new PHPStan\Command\ErrorFormatter\TableErrorFormatter(
  4. $this->getService('relativePathHelper'),
  5. $this->getService('simpleRelativePathHelper'),
  6. $this->getService('0369'),
    Parameter #3 $ciDetectedErrorFormatter of class PHPStan\Command\ErrorFormatter\TableErrorFormatter constructor expects PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter, object given.
    Collective
  7. true,
  8. null,
  9. null
  10. );
  11. }
  1. }
  2. public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter
  3. {
  4. return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper'));
    Parameter #1 $relativePathHelper of class PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. }
  6. public function createServiceExceptionTypeResolver(): PHPStan\Rules\Exceptions\ExceptionTypeResolver
  7. {
  1. }
  2. public function createServiceFileFinderAnalyse(): PHPStan\File\FileFinder
  3. {
  4. return new PHPStan\File\FileFinder($this->getService('fileExcluderAnalyse'), $this->getService('085'), ['php']);
    Parameter #2 $fileHelper of class PHPStan\File\FileFinder constructor expects PHPStan\File\FileHelper, object given.
    Collective
  5. }
  6. public function createServiceFileFinderScan(): PHPStan\File\FileFinder
  7. {
  1. }
  2. public function createServiceFileFinderAnalyse(): PHPStan\File\FileFinder
  3. {
  4. return new PHPStan\File\FileFinder($this->getService('fileExcluderAnalyse'), $this->getService('085'), ['php']);
    Parameter #1 $fileExcluder of class PHPStan\File\FileFinder constructor expects PHPStan\File\FileExcluder, object given.
    Collective
  5. }
  6. public function createServiceFileFinderScan(): PHPStan\File\FileFinder
  7. {
  1. }
  2. public function createServiceFileFinderScan(): PHPStan\File\FileFinder
  3. {
  4. return new PHPStan\File\FileFinder($this->getService('fileExcluderScan'), $this->getService('085'), ['php']);
    Parameter #1 $fileExcluder of class PHPStan\File\FileFinder constructor expects PHPStan\File\FileExcluder, object given.
    Collective
  5. }
  6. public function createServiceFreshStubParser(): PHPStan\Parser\StubParser
  7. {
  1. }
  2. public function createServiceFileFinderScan(): PHPStan\File\FileFinder
  3. {
  4. return new PHPStan\File\FileFinder($this->getService('fileExcluderScan'), $this->getService('085'), ['php']);
    Parameter #2 $fileHelper of class PHPStan\File\FileFinder constructor expects PHPStan\File\FileHelper, object given.
    Collective
  5. }
  6. public function createServiceFreshStubParser(): PHPStan\Parser\StubParser
  7. {
  1. }
  2. public function createServiceFreshStubParser(): PHPStan\Parser\StubParser
  3. {
  4. return new PHPStan\Parser\StubParser($this->getService('php8PhpParser'), $this->getService('03'));
    Parameter #1 $parser of class PHPStan\Parser\StubParser constructor expects PhpParser\Parser, object given.
    Collective
  5. }
  6. public function createServiceNodeScopeResolverReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector
  7. {
  1. }
  2. public function createServiceFreshStubParser(): PHPStan\Parser\StubParser
  3. {
  4. return new PHPStan\Parser\StubParser($this->getService('php8PhpParser'), $this->getService('03'));
    Parameter #2 $nameResolver of class PHPStan\Parser\StubParser constructor expects PhpParser\NodeVisitor\NameResolver, object given.
    Collective
  5. }
  6. public function createServiceNodeScopeResolverReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector
  7. {
  1. }
  2. public function createServiceOriginalBetterReflectionReflector(): PHPStan\BetterReflection\Reflector\DefaultReflector
  3. {
  4. return new PHPStan\BetterReflection\Reflector\DefaultReflector($this->getService('betterReflectionSourceLocator'));
    Parameter #1 $sourceLocator of class PHPStan\BetterReflection\Reflector\DefaultReflector constructor expects PHPStan\BetterReflection\SourceLocator\Type\SourceLocator, object given.
    Collective
  5. }
  6. public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper
  7. {
  1. public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser
  2. {
  3. return new PHPStan\Parser\PathRoutingParser(
  4. $this->getService('085'),
    Parameter #1 $fileHelper of class PHPStan\Parser\PathRoutingParser constructor expects PHPStan\File\FileHelper, object given.
    Collective
  5. $this->getService('currentPhpVersionRichParser'),
  6. $this->getService('currentPhpVersionSimpleParser'),
  7. $this->getService('php8Parser'),
  8. $this->getParameter('singleReflectionFile')
  9. );
  1. public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser
  2. {
  3. return new PHPStan\Parser\PathRoutingParser(
  4. $this->getService('085'),
  5. $this->getService('currentPhpVersionRichParser'),
    Parameter #2 $currentPhpVersionRichParser of class PHPStan\Parser\PathRoutingParser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  6. $this->getService('currentPhpVersionSimpleParser'),
  7. $this->getService('php8Parser'),
  8. $this->getParameter('singleReflectionFile')
  9. );
  10. }
  1. public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser
  2. {
  3. return new PHPStan\Parser\PathRoutingParser(
  4. $this->getService('085'),
  5. $this->getService('currentPhpVersionRichParser'),
  6. $this->getService('currentPhpVersionSimpleParser'),
    Parameter #3 $currentPhpVersionSimpleParser of class PHPStan\Parser\PathRoutingParser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  7. $this->getService('php8Parser'),
  8. $this->getParameter('singleReflectionFile')
  9. );
  10. }
  1. {
  2. return new PHPStan\Parser\PathRoutingParser(
  3. $this->getService('085'),
  4. $this->getService('currentPhpVersionRichParser'),
  5. $this->getService('currentPhpVersionSimpleParser'),
  6. $this->getService('php8Parser'),
    Parameter #4 $php8Parser of class PHPStan\Parser\PathRoutingParser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  7. $this->getParameter('singleReflectionFile')
  8. );
  9. }
  1. return new PHPStan\Parser\PathRoutingParser(
  2. $this->getService('085'),
  3. $this->getService('currentPhpVersionRichParser'),
  4. $this->getService('currentPhpVersionSimpleParser'),
  5. $this->getService('php8Parser'),
  6. $this->getParameter('singleReflectionFile')
    Parameter #5 $singleReflectionFile of class PHPStan\Parser\PathRoutingParser constructor expects string|null, mixed given.
    Collective
  7. );
  8. }
  9. public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative
  1. public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser
  2. {
  3. return new PHPStan\Parser\SimpleParser(
  4. $this->getService('php8PhpParser'),
    Parameter #1 $parser of class PHPStan\Parser\SimpleParser constructor expects PhpParser\Parser, object given.
    Collective
  5. $this->getService('03'),
  6. $this->getService('021'),
  7. $this->getService('022')
  8. );
  9. }
  1. public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser
  2. {
  3. return new PHPStan\Parser\SimpleParser(
  4. $this->getService('php8PhpParser'),
  5. $this->getService('03'),
    Parameter #2 $nameResolver of class PHPStan\Parser\SimpleParser constructor expects PhpParser\NodeVisitor\NameResolver, object given.
    Collective
  6. $this->getService('021'),
  7. $this->getService('022')
  8. );
  9. }
  1. public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser
  2. {
  3. return new PHPStan\Parser\SimpleParser(
  4. $this->getService('php8PhpParser'),
  5. $this->getService('03'),
  6. $this->getService('021'),
    Parameter #3 $variadicMethodsVisitor of class PHPStan\Parser\SimpleParser constructor expects PHPStan\Parser\VariadicMethodsVisitor, object given.
    Collective
  7. $this->getService('022')
  8. );
  9. }
  1. {
  2. return new PHPStan\Parser\SimpleParser(
  3. $this->getService('php8PhpParser'),
  4. $this->getService('03'),
  5. $this->getService('021'),
  6. $this->getService('022')
    Parameter #4 $variadicFunctionsVisitor of class PHPStan\Parser\SimpleParser constructor expects PHPStan\Parser\VariadicFunctionsVisitor, object given.
    Collective
  7. );
  8. }
  9. public function createServicePhp8PhpParser(): PhpParser\Parser\Php8
  1. }
  2. public function createServicePhp8PhpParser(): PhpParser\Parser\Php8
  3. {
  4. return new PhpParser\Parser\Php8($this->getService('php8Lexer'));
    Parameter #1 $lexer of class PhpParser\Parser\Php8 constructor expects PhpParser\Lexer, object given.
    Collective
  5. }
  6. public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator
  7. {
  1. }
  2. public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator
  3. {
  4. return new PHPStan\Parser\PhpParserDecorator($this->getService('defaultAnalysisParser'));
    Parameter #1 $wrappedParser of class PHPStan\Parser\PhpParserDecorator constructor expects PHPStan\Parser\Parser, object given.
    Collective
  5. }
  6. public function createServicePhpstanDiagnoseExtension(): PHPStan\Diagnose\PHPStanDiagnoseExtension
  7. {
  1. public function createServicePhpstanDiagnoseExtension(): PHPStan\Diagnose\PHPStanDiagnoseExtension
  2. {
  3. return new PHPStan\Diagnose\PHPStanDiagnoseExtension(
  4. $this->getService('026'),
    Parameter #1 $phpVersion of class PHPStan\Diagnose\PHPStanDiagnoseExtension constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. null,
  6. $this->getService('085'),
  7. ['/app'],
  8. [
  9. 'phar:///opt/tools/phpstan.phar/conf/parametersSchema.neon',
  1. public function createServicePhpstanDiagnoseExtension(): PHPStan\Diagnose\PHPStanDiagnoseExtension
  2. {
  3. return new PHPStan\Diagnose\PHPStanDiagnoseExtension(
  4. $this->getService('026'),
  5. null,
  6. $this->getService('085'),
    Parameter #3 $fileHelper of class PHPStan\Diagnose\PHPStanDiagnoseExtension constructor expects PHPStan\File\FileHelper, object given.
    Collective
  7. ['/app'],
  8. [
  9. 'phar:///opt/tools/phpstan.phar/conf/parametersSchema.neon',
  10. 'phar:///opt/tools/phpstan.phar/conf/config.levelmax.neon',
  11. 'phar:///opt/tools/phpstan.phar/conf/config.level10.neon',
  1. 'phar:///opt/tools/symplify-phpstan-rules.phar/74/vendor/symplify/phpstan-rules/config/code-complexity-rules.neon',
  2. 'phar:///opt/tools/symplify-phpstan-rules.phar/74/vendor/symplify/phpstan-rules/config/configurable-rules.neon',
  3. 'phar:///opt/tools/symplify-phpstan-rules.phar/74/vendor/symplify/phpstan-rules/config/naming-rules.neon',
  4. 'phar:///opt/tools/symplify-phpstan-rules.phar/74/vendor/symplify/phpstan-rules/config/static-rules.neon',
  5. ],
  6. $this->getService('029')
    Parameter #6 $composerPhpVersionFactory of class PHPStan\Diagnose\PHPStanDiagnoseExtension constructor expects PHPStan\Php\ComposerPhpVersionFactory, object given.
    Collective
  7. );
  8. }
  9. public function createServiceReflectionProvider(): PHPStan\Reflection\ReflectionProvider
  1. }
  2. public function createServiceReflectionProviderFactory(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory
  3. {
  4. return new PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory($this->getService('betterReflectionProvider'));
    Parameter #1 $staticReflectionProvider of class PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRegistry(): PHPStan\Rules\LazyRegistry
  7. {
  1. }
  2. public function createServiceRegistry(): PHPStan\Rules\LazyRegistry
  3. {
  4. return new PHPStan\Rules\LazyRegistry($this->getService('075'));
    Parameter #1 $container of class PHPStan\Rules\LazyRegistry constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper
  7. {
  1. public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper
  2. {
  3. return new PHPStan\File\FuzzyRelativePathHelper(
  4. $this->getService('parentDirectoryRelativePathHelper'),
    Parameter #1 $fallbackRelativePathHelper of class PHPStan\File\FuzzyRelativePathHelper constructor expects PHPStan\File\RelativePathHelper, object given.
    Collective
  5. '/app',
  6. $this->getParameter('analysedPaths')
  7. );
  8. }
  1. public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper
  2. {
  3. return new PHPStan\File\FuzzyRelativePathHelper(
  4. $this->getService('parentDirectoryRelativePathHelper'),
  5. '/app',
  6. $this->getParameter('analysedPaths')
    Parameter #3 $analysedPaths of class PHPStan\File\FuzzyRelativePathHelper constructor expects array<string>, mixed given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__0(): PHPStan\Rules\Debug\DebugScopeRule
  1. }
  2. public function createServiceRules__0(): PHPStan\Rules\Debug\DebugScopeRule
  3. {
  4. return new PHPStan\Rules\Debug\DebugScopeRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Debug\DebugScopeRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__1(): PHPStan\Rules\Debug\DumpPhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__1(): PHPStan\Rules\Debug\DumpPhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\Debug\DumpPhpDocTypeRule($this->getService('reflectionProvider'), $this->getService('035'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Debug\DumpPhpDocTypeRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__10(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule
  7. {
  1. }
  2. public function createServiceRules__1(): PHPStan\Rules\Debug\DumpPhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\Debug\DumpPhpDocTypeRule($this->getService('reflectionProvider'), $this->getService('035'));
    Parameter #2 $printer of class PHPStan\Rules\Debug\DumpPhpDocTypeRule constructor expects PHPStan\PhpDocParser\Printer\Printer, object given.
    Collective
  5. }
  6. public function createServiceRules__10(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule
  7. {
  1. public function createServiceRules__10(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__10(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__10(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
    Parameter #3 $ruleLevelHelper of class PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodUsageRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__100(): PHPStan\Rules\Properties\PropertiesInInterfaceRule
  1. }
  2. public function createServiceRules__100(): PHPStan\Rules\Properties\PropertiesInInterfaceRule
  3. {
  4. return new PHPStan\Rules\Properties\PropertiesInInterfaceRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Properties\PropertiesInInterfaceRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__101(): PHPStan\Rules\Properties\PropertyAssignRefRule
  7. {
  1. }
  2. public function createServiceRules__101(): PHPStan\Rules\Properties\PropertyAssignRefRule
  3. {
  4. return new PHPStan\Rules\Properties\PropertyAssignRefRule($this->getService('026'), $this->getService('0180'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Properties\PropertyAssignRefRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__102(): PHPStan\Rules\Properties\PropertyAttributesRule
  7. {
  1. }
  2. public function createServiceRules__101(): PHPStan\Rules\Properties\PropertyAssignRefRule
  3. {
  4. return new PHPStan\Rules\Properties\PropertyAssignRefRule($this->getService('026'), $this->getService('0180'));
    Parameter #2 $propertyReflectionFinder of class PHPStan\Rules\Properties\PropertyAssignRefRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__102(): PHPStan\Rules\Properties\PropertyAttributesRule
  7. {
  1. }
  2. public function createServiceRules__102(): PHPStan\Rules\Properties\PropertyAttributesRule
  3. {
  4. return new PHPStan\Rules\Properties\PropertyAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Properties\PropertyAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__103(): PHPStan\Rules\Properties\PropertyHookAttributesRule
  7. {
  1. }
  2. public function createServiceRules__103(): PHPStan\Rules\Properties\PropertyHookAttributesRule
  3. {
  4. return new PHPStan\Rules\Properties\PropertyHookAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Properties\PropertyHookAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__104(): PHPStan\Rules\Properties\PropertyInClassRule
  7. {
  1. }
  2. public function createServiceRules__104(): PHPStan\Rules\Properties\PropertyInClassRule
  3. {
  4. return new PHPStan\Rules\Properties\PropertyInClassRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Properties\PropertyInClassRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__105(): PHPStan\Rules\Properties\ReadOnlyPropertyRule
  7. {
  1. }
  2. public function createServiceRules__105(): PHPStan\Rules\Properties\ReadOnlyPropertyRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyPropertyRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Properties\ReadOnlyPropertyRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__106(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule
  7. {
  1. }
  2. public function createServiceRules__107(): PHPStan\Rules\Regexp\RegularExpressionPatternRule
  3. {
  4. return new PHPStan\Rules\Regexp\RegularExpressionPatternRule($this->getService('0280'));
    Parameter #1 $regexExpressionHelper of class PHPStan\Rules\Regexp\RegularExpressionPatternRule constructor expects PHPStan\Type\Regex\RegexExpressionHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__108(): PHPStan\Rules\Traits\ConflictingTraitConstantsRule
  7. {
  1. }
  2. public function createServiceRules__108(): PHPStan\Rules\Traits\ConflictingTraitConstantsRule
  3. {
  4. return new PHPStan\Rules\Traits\ConflictingTraitConstantsRule($this->getService('096'), $this->getService('reflectionProvider'));
    Parameter #1 $initializerExprTypeResolver of class PHPStan\Rules\Traits\ConflictingTraitConstantsRule constructor expects PHPStan\Reflection\InitializerExprTypeResolver, object given.
    Collective
  5. }
  6. public function createServiceRules__109(): PHPStan\Rules\Traits\ConstantsInTraitsRule
  7. {
  1. }
  2. public function createServiceRules__108(): PHPStan\Rules\Traits\ConflictingTraitConstantsRule
  3. {
  4. return new PHPStan\Rules\Traits\ConflictingTraitConstantsRule($this->getService('096'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Traits\ConflictingTraitConstantsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__109(): PHPStan\Rules\Traits\ConstantsInTraitsRule
  7. {
  1. }
  2. public function createServiceRules__109(): PHPStan\Rules\Traits\ConstantsInTraitsRule
  3. {
  4. return new PHPStan\Rules\Traits\ConstantsInTraitsRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Traits\ConstantsInTraitsRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__11(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule
  7. {
  1. public function createServiceRules__11(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__11(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__11(): PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
    Parameter #3 $ruleLevelHelper of class PHPStan\Rules\RestrictedUsage\RestrictedStaticMethodCallableUsageRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__110(): PHPStan\Rules\Traits\TraitAttributesRule
  1. }
  2. public function createServiceRules__110(): PHPStan\Rules\Traits\TraitAttributesRule
  3. {
  4. return new PHPStan\Rules\Traits\TraitAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Traits\TraitAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__111(): PHPStan\Rules\Types\InvalidTypesInUnionRule
  7. {
  1. }
  2. public function createServiceRules__112(): PHPStan\Rules\Variables\UnsetRule
  3. {
  4. return new PHPStan\Rules\Variables\UnsetRule($this->getService('0180'), $this->getService('026'));
    Parameter #1 $propertyReflectionFinder of class PHPStan\Rules\Variables\UnsetRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__113(): PHPStan\Rules\Whitespace\FileWhitespaceRule
  7. {
  1. }
  2. public function createServiceRules__112(): PHPStan\Rules\Variables\UnsetRule
  3. {
  4. return new PHPStan\Rules\Variables\UnsetRule($this->getService('0180'), $this->getService('026'));
    Parameter #2 $phpVersion of class PHPStan\Rules\Variables\UnsetRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__113(): PHPStan\Rules\Whitespace\FileWhitespaceRule
  7. {
  1. }
  2. public function createServiceRules__114(): PHPStan\Rules\Classes\UnusedConstructorParametersRule
  3. {
  4. return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('0183'));
    Parameter #1 $check of class PHPStan\Rules\Classes\UnusedConstructorParametersRule constructor expects PHPStan\Rules\UnusedFunctionParametersCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__115(): PHPStan\Rules\Functions\UnusedClosureUsesRule
  7. {
  1. }
  2. public function createServiceRules__115(): PHPStan\Rules\Functions\UnusedClosureUsesRule
  3. {
  4. return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('0183'));
    Parameter #1 $check of class PHPStan\Rules\Functions\UnusedClosureUsesRule constructor expects PHPStan\Rules\UnusedFunctionParametersCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__116(): PHPStan\Rules\Variables\EmptyRule
  7. {
  1. }
  2. public function createServiceRules__116(): PHPStan\Rules\Variables\EmptyRule
  3. {
  4. return new PHPStan\Rules\Variables\EmptyRule($this->getService('0158'));
    Parameter #1 $issetCheck of class PHPStan\Rules\Variables\EmptyRule constructor expects PHPStan\Rules\IssetCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__117(): PHPStan\Rules\Variables\IssetRule
  7. {
  1. }
  2. public function createServiceRules__117(): PHPStan\Rules\Variables\IssetRule
  3. {
  4. return new PHPStan\Rules\Variables\IssetRule($this->getService('0158'));
    Parameter #1 $issetCheck of class PHPStan\Rules\Variables\IssetRule constructor expects PHPStan\Rules\IssetCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__118(): PHPStan\Rules\Variables\NullCoalesceRule
  7. {
  1. }
  2. public function createServiceRules__118(): PHPStan\Rules\Variables\NullCoalesceRule
  3. {
  4. return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('0158'));
    Parameter #1 $issetCheck of class PHPStan\Rules\Variables\NullCoalesceRule constructor expects PHPStan\Rules\IssetCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__119(): PHPStan\Rules\Cast\EchoRule
  7. {
  1. }
  2. public function createServiceRules__119(): PHPStan\Rules\Cast\EchoRule
  3. {
  4. return new PHPStan\Rules\Cast\EchoRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Cast\EchoRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__12(): PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule
  7. {
  1. public function createServiceRules__12(): PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__12(): PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__12(): PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
    Parameter #3 $ruleLevelHelper of class PHPStan\Rules\RestrictedUsage\RestrictedStaticPropertyUsageRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__120(): PHPStan\Rules\Cast\InvalidCastRule
  1. }
  2. public function createServiceRules__120(): PHPStan\Rules\Cast\InvalidCastRule
  3. {
  4. return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('0182'));
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Cast\InvalidCastRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__121(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule
  7. {
  1. }
  2. public function createServiceRules__120(): PHPStan\Rules\Cast\InvalidCastRule
  3. {
  4. return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('0182'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Cast\InvalidCastRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__121(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule
  7. {
  1. }
  2. public function createServiceRules__121(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule
  3. {
  4. return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('023'), $this->getService('0182'));
    Parameter #1 $exprPrinter of class PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule constructor expects PHPStan\Node\Printer\ExprPrinter, object given.
    Collective
  5. }
  6. public function createServiceRules__122(): PHPStan\Rules\Cast\PrintRule
  7. {
  1. }
  2. public function createServiceRules__121(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule
  3. {
  4. return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('023'), $this->getService('0182'));
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__122(): PHPStan\Rules\Cast\PrintRule
  7. {
  1. }
  2. public function createServiceRules__122(): PHPStan\Rules\Cast\PrintRule
  3. {
  4. return new PHPStan\Rules\Cast\PrintRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Cast\PrintRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__123(): PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule
  7. {
  1. }
  2. public function createServiceRules__124(): PHPStan\Rules\Classes\MethodTagRule
  3. {
  4. return new PHPStan\Rules\Classes\MethodTagRule($this->getService('0136'));
    Parameter #1 $check of class PHPStan\Rules\Classes\MethodTagRule constructor expects PHPStan\Rules\Classes\MethodTagCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__125(): PHPStan\Rules\Classes\MethodTagTraitRule
  7. {
  1. }
  2. public function createServiceRules__125(): PHPStan\Rules\Classes\MethodTagTraitRule
  3. {
  4. return new PHPStan\Rules\Classes\MethodTagTraitRule($this->getService('0136'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\MethodTagTraitRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__126(): PHPStan\Rules\Classes\MethodTagTraitUseRule
  7. {
  1. }
  2. public function createServiceRules__125(): PHPStan\Rules\Classes\MethodTagTraitRule
  3. {
  4. return new PHPStan\Rules\Classes\MethodTagTraitRule($this->getService('0136'), $this->getService('reflectionProvider'));
    Parameter #1 $check of class PHPStan\Rules\Classes\MethodTagTraitRule constructor expects PHPStan\Rules\Classes\MethodTagCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__126(): PHPStan\Rules\Classes\MethodTagTraitUseRule
  7. {
  1. }
  2. public function createServiceRules__126(): PHPStan\Rules\Classes\MethodTagTraitUseRule
  3. {
  4. return new PHPStan\Rules\Classes\MethodTagTraitUseRule($this->getService('0136'));
    Parameter #1 $check of class PHPStan\Rules\Classes\MethodTagTraitUseRule constructor expects PHPStan\Rules\Classes\MethodTagCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__127(): PHPStan\Rules\Classes\PropertyTagRule
  7. {
  1. }
  2. public function createServiceRules__127(): PHPStan\Rules\Classes\PropertyTagRule
  3. {
  4. return new PHPStan\Rules\Classes\PropertyTagRule($this->getService('0138'));
    Parameter #1 $check of class PHPStan\Rules\Classes\PropertyTagRule constructor expects PHPStan\Rules\Classes\PropertyTagCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__128(): PHPStan\Rules\Classes\PropertyTagTraitRule
  7. {
  1. }
  2. public function createServiceRules__128(): PHPStan\Rules\Classes\PropertyTagTraitRule
  3. {
  4. return new PHPStan\Rules\Classes\PropertyTagTraitRule($this->getService('0138'), $this->getService('reflectionProvider'));
    Parameter #1 $check of class PHPStan\Rules\Classes\PropertyTagTraitRule constructor expects PHPStan\Rules\Classes\PropertyTagCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__129(): PHPStan\Rules\Classes\PropertyTagTraitUseRule
  7. {
  1. }
  2. public function createServiceRules__128(): PHPStan\Rules\Classes\PropertyTagTraitRule
  3. {
  4. return new PHPStan\Rules\Classes\PropertyTagTraitRule($this->getService('0138'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\PropertyTagTraitRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__129(): PHPStan\Rules\Classes\PropertyTagTraitUseRule
  7. {
  1. }
  2. public function createServiceRules__129(): PHPStan\Rules\Classes\PropertyTagTraitUseRule
  3. {
  4. return new PHPStan\Rules\Classes\PropertyTagTraitUseRule($this->getService('0138'));
    Parameter #1 $check of class PHPStan\Rules\Classes\PropertyTagTraitUseRule constructor expects PHPStan\Rules\Classes\PropertyTagCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__13(): PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule
  7. {
  1. public function createServiceRules__13(): PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__13(): PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedUsageOfDeprecatedStringCastRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__130(): PHPStan\Rules\Classes\MixinTraitRule
  1. }
  2. public function createServiceRules__130(): PHPStan\Rules\Classes\MixinTraitRule
  3. {
  4. return new PHPStan\Rules\Classes\MixinTraitRule($this->getService('0137'), $this->getService('reflectionProvider'));
    Parameter #1 $check of class PHPStan\Rules\Classes\MixinTraitRule constructor expects PHPStan\Rules\Classes\MixinCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__131(): PHPStan\Rules\Classes\MixinTraitUseRule
  7. {
  1. }
  2. public function createServiceRules__130(): PHPStan\Rules\Classes\MixinTraitRule
  3. {
  4. return new PHPStan\Rules\Classes\MixinTraitRule($this->getService('0137'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\MixinTraitRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__131(): PHPStan\Rules\Classes\MixinTraitUseRule
  7. {
  1. }
  2. public function createServiceRules__131(): PHPStan\Rules\Classes\MixinTraitUseRule
  3. {
  4. return new PHPStan\Rules\Classes\MixinTraitUseRule($this->getService('0137'));
    Parameter #1 $check of class PHPStan\Rules\Classes\MixinTraitUseRule constructor expects PHPStan\Rules\Classes\MixinCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__132(): PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule
  7. {
  1. }
  2. public function createServiceRules__137(): PHPStan\Rules\Generics\ClassAncestorsRule
  3. {
  4. return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0152'), $this->getService('0151'));
    Parameter #2 $crossCheckInterfacesHelper of class PHPStan\Rules\Generics\ClassAncestorsRule constructor expects PHPStan\Rules\Generics\CrossCheckInterfacesHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__138(): PHPStan\Rules\Generics\ClassTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__137(): PHPStan\Rules\Generics\ClassAncestorsRule
  3. {
  4. return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0152'), $this->getService('0151'));
    Parameter #1 $genericAncestorsCheck of class PHPStan\Rules\Generics\ClassAncestorsRule constructor expects PHPStan\Rules\Generics\GenericAncestorsCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__138(): PHPStan\Rules\Generics\ClassTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__138(): PHPStan\Rules\Generics\ClassTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('0155'));
    Parameter #1 $templateTypeCheck of class PHPStan\Rules\Generics\ClassTemplateTypeRule constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__139(): PHPStan\Rules\Generics\EnumAncestorsRule
  7. {
  1. }
  2. public function createServiceRules__139(): PHPStan\Rules\Generics\EnumAncestorsRule
  3. {
  4. return new PHPStan\Rules\Generics\EnumAncestorsRule($this->getService('0152'), $this->getService('0151'));
    Parameter #1 $genericAncestorsCheck of class PHPStan\Rules\Generics\EnumAncestorsRule constructor expects PHPStan\Rules\Generics\GenericAncestorsCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__14(): PHPStan\Rules\Api\ApiInstanceofRule
  7. {
  1. }
  2. public function createServiceRules__139(): PHPStan\Rules\Generics\EnumAncestorsRule
  3. {
  4. return new PHPStan\Rules\Generics\EnumAncestorsRule($this->getService('0152'), $this->getService('0151'));
    Parameter #2 $crossCheckInterfacesHelper of class PHPStan\Rules\Generics\EnumAncestorsRule constructor expects PHPStan\Rules\Generics\CrossCheckInterfacesHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__14(): PHPStan\Rules\Api\ApiInstanceofRule
  7. {
  1. }
  2. public function createServiceRules__14(): PHPStan\Rules\Api\ApiInstanceofRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInstanceofRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiInstanceofRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__140(): PHPStan\Rules\Generics\EnumTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__14(): PHPStan\Rules\Api\ApiInstanceofRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInstanceofRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiInstanceofRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__140(): PHPStan\Rules\Generics\EnumTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__141(): PHPStan\Rules\Generics\FunctionTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0185'), $this->getService('0155'));
    Parameter #2 $templateTypeCheck of class PHPStan\Rules\Generics\FunctionTemplateTypeRule constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__142(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule
  7. {
  1. }
  2. public function createServiceRules__141(): PHPStan\Rules\Generics\FunctionTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0185'), $this->getService('0155'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Generics\FunctionTemplateTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__142(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule
  7. {
  1. }
  2. public function createServiceRules__142(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule
  3. {
  4. return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('0156'));
    Parameter #1 $varianceCheck of class PHPStan\Rules\Generics\FunctionSignatureVarianceRule constructor expects PHPStan\Rules\Generics\VarianceCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__143(): PHPStan\Rules\Generics\InterfaceAncestorsRule
  7. {
  1. }
  2. public function createServiceRules__143(): PHPStan\Rules\Generics\InterfaceAncestorsRule
  3. {
  4. return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0152'), $this->getService('0151'));
    Parameter #1 $genericAncestorsCheck of class PHPStan\Rules\Generics\InterfaceAncestorsRule constructor expects PHPStan\Rules\Generics\GenericAncestorsCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__144(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__143(): PHPStan\Rules\Generics\InterfaceAncestorsRule
  3. {
  4. return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0152'), $this->getService('0151'));
    Parameter #2 $crossCheckInterfacesHelper of class PHPStan\Rules\Generics\InterfaceAncestorsRule constructor expects PHPStan\Rules\Generics\CrossCheckInterfacesHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__144(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__144(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0155'));
    Parameter #1 $templateTypeCheck of class PHPStan\Rules\Generics\InterfaceTemplateTypeRule constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__145(): PHPStan\Rules\Generics\MethodTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__145(): PHPStan\Rules\Generics\MethodTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0185'), $this->getService('0155'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Generics\MethodTemplateTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__146(): PHPStan\Rules\Generics\MethodTagTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__145(): PHPStan\Rules\Generics\MethodTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0185'), $this->getService('0155'));
    Parameter #2 $templateTypeCheck of class PHPStan\Rules\Generics\MethodTemplateTypeRule constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__146(): PHPStan\Rules\Generics\MethodTagTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__146(): PHPStan\Rules\Generics\MethodTagTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\MethodTagTemplateTypeRule($this->getService('0154'));
    Parameter #1 $check of class PHPStan\Rules\Generics\MethodTagTemplateTypeRule constructor expects PHPStan\Rules\Generics\MethodTagTemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__147(): PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule
  7. {
  1. public function createServiceRules__147(): PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule
  2. {
  3. return new PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule(
  4. $this->getService('0154'),
    Parameter #1 $check of class PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule constructor expects PHPStan\Rules\Generics\MethodTagTemplateTypeCheck, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__147(): PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule
  2. {
  3. return new PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule(
  4. $this->getService('0154'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__148(): PHPStan\Rules\Generics\MethodSignatureVarianceRule
  1. }
  2. public function createServiceRules__148(): PHPStan\Rules\Generics\MethodSignatureVarianceRule
  3. {
  4. return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('0156'));
    Parameter #1 $varianceCheck of class PHPStan\Rules\Generics\MethodSignatureVarianceRule constructor expects PHPStan\Rules\Generics\VarianceCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__149(): PHPStan\Rules\Generics\PropertyVarianceRule
  7. {
  1. }
  2. public function createServiceRules__149(): PHPStan\Rules\Generics\PropertyVarianceRule
  3. {
  4. return new PHPStan\Rules\Generics\PropertyVarianceRule($this->getService('0156'));
    Parameter #1 $varianceCheck of class PHPStan\Rules\Generics\PropertyVarianceRule constructor expects PHPStan\Rules\Generics\VarianceCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__15(): PHPStan\Rules\Api\ApiInstanceofTypeRule
  7. {
  1. }
  2. public function createServiceRules__15(): PHPStan\Rules\Api\ApiInstanceofTypeRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInstanceofTypeRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Api\ApiInstanceofTypeRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__150(): PHPStan\Rules\Generics\TraitTemplateTypeRule
  7. {
  1. }
  2. public function createServiceRules__150(): PHPStan\Rules\Generics\TraitTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0185'), $this->getService('0155'));
    Parameter #2 $templateTypeCheck of class PHPStan\Rules\Generics\TraitTemplateTypeRule constructor expects PHPStan\Rules\Generics\TemplateTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__151(): PHPStan\Rules\Generics\UsedTraitsRule
  7. {
  1. }
  2. public function createServiceRules__150(): PHPStan\Rules\Generics\TraitTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0185'), $this->getService('0155'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Generics\TraitTemplateTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__151(): PHPStan\Rules\Generics\UsedTraitsRule
  7. {
  1. }
  2. public function createServiceRules__151(): PHPStan\Rules\Generics\UsedTraitsRule
  3. {
  4. return new PHPStan\Rules\Generics\UsedTraitsRule($this->getService('0185'), $this->getService('0152'));
    Parameter #2 $genericAncestorsCheck of class PHPStan\Rules\Generics\UsedTraitsRule constructor expects PHPStan\Rules\Generics\GenericAncestorsCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__152(): PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule
  7. {
  1. }
  2. public function createServiceRules__151(): PHPStan\Rules\Generics\UsedTraitsRule
  3. {
  4. return new PHPStan\Rules\Generics\UsedTraitsRule($this->getService('0185'), $this->getService('0152'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\Generics\UsedTraitsRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__152(): PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule
  7. {
  1. }
  2. public function createServiceRules__154(): PHPStan\Rules\Operators\InvalidBinaryOperationRule
  3. {
  4. return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('023'), $this->getService('0182'));
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Operators\InvalidBinaryOperationRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__155(): PHPStan\Rules\Operators\InvalidComparisonOperationRule
  7. {
  1. }
  2. public function createServiceRules__154(): PHPStan\Rules\Operators\InvalidBinaryOperationRule
  3. {
  4. return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('023'), $this->getService('0182'));
    Parameter #1 $exprPrinter of class PHPStan\Rules\Operators\InvalidBinaryOperationRule constructor expects PHPStan\Node\Printer\ExprPrinter, object given.
    Collective
  5. }
  6. public function createServiceRules__155(): PHPStan\Rules\Operators\InvalidComparisonOperationRule
  7. {
  1. }
  2. public function createServiceRules__155(): PHPStan\Rules\Operators\InvalidComparisonOperationRule
  3. {
  4. return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Operators\InvalidComparisonOperationRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__156(): PHPStan\Rules\Operators\InvalidUnaryOperationRule
  7. {
  1. }
  2. public function createServiceRules__156(): PHPStan\Rules\Operators\InvalidUnaryOperationRule
  3. {
  4. return new PHPStan\Rules\Operators\InvalidUnaryOperationRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Operators\InvalidUnaryOperationRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__157(): PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__157(): PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule($this->getService('0168'));
    Parameter #1 $helper of class PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule constructor expects PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__158(): PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__158(): PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule($this->getService('0168'));
    Parameter #1 $helper of class PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule constructor expects PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__159(): PHPStan\Rules\PhpDoc\FunctionAssertRule
  7. {
  1. }
  2. public function createServiceRules__159(): PHPStan\Rules\PhpDoc\FunctionAssertRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\FunctionAssertRule($this->getService('0169'));
    Parameter #1 $helper of class PHPStan\Rules\PhpDoc\FunctionAssertRule constructor expects PHPStan\Rules\PhpDoc\AssertRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__16(): PHPStan\Rules\Api\ApiInstantiationRule
  7. {
  1. }
  2. public function createServiceRules__16(): PHPStan\Rules\Api\ApiInstantiationRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInstantiationRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiInstantiationRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__160(): PHPStan\Rules\PhpDoc\MethodAssertRule
  7. {
  1. }
  2. public function createServiceRules__16(): PHPStan\Rules\Api\ApiInstantiationRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInstantiationRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiInstantiationRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__160(): PHPStan\Rules\PhpDoc\MethodAssertRule
  7. {
  1. }
  2. public function createServiceRules__160(): PHPStan\Rules\PhpDoc\MethodAssertRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\MethodAssertRule($this->getService('0169'));
    Parameter #1 $helper of class PHPStan\Rules\PhpDoc\MethodAssertRule constructor expects PHPStan\Rules\PhpDoc\AssertRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__161(): PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule
  7. {
  1. }
  2. public function createServiceRules__161(): PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule($this->getService('0170'), $this->getService('0153'));
    Parameter #2 $genericObjectTypeCheck of class PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__162(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__161(): PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule($this->getService('0170'), $this->getService('0153'));
    Parameter #1 $unresolvableTypeHelper of class PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__162(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__162(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule($this->getService('0153'), $this->getService('0170'));
    Parameter #2 $unresolvableTypeHelper of class PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__163(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__162(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule($this->getService('0153'), $this->getService('0170'));
    Parameter #1 $genericObjectTypeCheck of class PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__163(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__163(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0185'), $this->getService('0172'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__164(): PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__163(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0185'), $this->getService('0172'));
    Parameter #2 $check of class PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule constructor expects PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__164(): PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__164(): PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule($this->getService('0185'), $this->getService('0172'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__165(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule
  7. {
  1. }
  2. public function createServiceRules__164(): PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule($this->getService('0185'), $this->getService('0172'));
    Parameter #2 $check of class PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule constructor expects PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__165(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule
  7. {
  1. public function createServiceRules__165(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule(
  4. $this->getService('0153'),
    Parameter #1 $genericObjectTypeCheck of class PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule constructor expects PHPStan\Rules\Generics\GenericObjectTypeCheck, object given.
    Collective
  5. $this->getService('0170'),
  6. $this->getService('0171')
  7. );
  8. }
  1. public function createServiceRules__165(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule(
  4. $this->getService('0153'),
  5. $this->getService('0170'),
    Parameter #2 $unresolvableTypeHelper of class PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule constructor expects PHPStan\Rules\PhpDoc\UnresolvableTypeHelper, object given.
    Collective
  6. $this->getService('0171')
  7. );
  8. }
  1. public function createServiceRules__165(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule(
  4. $this->getService('0153'),
  5. $this->getService('0170'),
  6. $this->getService('0171')
    Parameter #3 $genericCallableRuleHelper of class PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule constructor expects PHPStan\Rules\PhpDoc\GenericCallableRuleHelper, object given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__166(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule
  1. }
  2. public function createServiceRules__166(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0185'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__167(): PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule
  7. {
  1. }
  2. public function createServiceRules__167(): PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule($this->getService('0185'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__168(): PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule
  7. {
  1. }
  2. public function createServiceRules__168(): PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule($this->getService('0173'));
    Parameter #1 $varTagTypeRuleHelper of class PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule constructor expects PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__169(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule
  7. {
  1. }
  2. public function createServiceRules__169(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0185'), $this->getService('0173'));
    Parameter #2 $varTagTypeRuleHelper of class PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule constructor expects PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__17(): PHPStan\Rules\Api\ApiClassConstFetchRule
  7. {
  1. }
  2. public function createServiceRules__169(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0185'), $this->getService('0173'));
    Parameter #1 $fileTypeMapper of class PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  5. }
  6. public function createServiceRules__17(): PHPStan\Rules\Api\ApiClassConstFetchRule
  7. {
  1. }
  2. public function createServiceRules__17(): PHPStan\Rules\Api\ApiClassConstFetchRule
  3. {
  4. return new PHPStan\Rules\Api\ApiClassConstFetchRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiClassConstFetchRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__170(): PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule
  7. {
  1. }
  2. public function createServiceRules__17(): PHPStan\Rules\Api\ApiClassConstFetchRule
  3. {
  4. return new PHPStan\Rules\Api\ApiClassConstFetchRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiClassConstFetchRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__170(): PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule
  7. {
  1. }
  2. public function createServiceRules__174(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule
  3. {
  4. return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule($this->getService('0401'));
    Parameter #1 $requireExtendsCheck of class PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule constructor expects PHPStan\Rules\PhpDoc\RequireExtendsCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__175(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule
  7. {
  1. public function createServiceRules__175(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0401')
  6. );
  7. }
  1. public function createServiceRules__175(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule
  2. {
  3. return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0401')
    Parameter #2 $requireExtendsCheck of class PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule constructor expects PHPStan\Rules\PhpDoc\RequireExtendsCheck, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__176(): PHPStan\Rules\Pure\PureFunctionRule
  1. }
  2. public function createServiceRules__176(): PHPStan\Rules\Pure\PureFunctionRule
  3. {
  4. return new PHPStan\Rules\Pure\PureFunctionRule($this->getService('0181'));
    Parameter #1 $check of class PHPStan\Rules\Pure\PureFunctionRule constructor expects PHPStan\Rules\Pure\FunctionPurityCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__177(): PHPStan\Rules\Pure\PureMethodRule
  7. {
  1. }
  2. public function createServiceRules__177(): PHPStan\Rules\Pure\PureMethodRule
  3. {
  4. return new PHPStan\Rules\Pure\PureMethodRule($this->getService('0181'));
    Parameter #1 $check of class PHPStan\Rules\Pure\PureMethodRule constructor expects PHPStan\Rules\Pure\FunctionPurityCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__178(): PHPStan\Rules\Arrays\ArrayDestructuringRule
  7. {
  1. }
  2. public function createServiceRules__178(): PHPStan\Rules\Arrays\ArrayDestructuringRule
  3. {
  4. return new PHPStan\Rules\Arrays\ArrayDestructuringRule($this->getService('0182'), $this->getService('0131'));
    Parameter #2 $nonexistentOffsetInArrayDimFetchCheck of class PHPStan\Rules\Arrays\ArrayDestructuringRule constructor expects PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__179(): PHPStan\Rules\Arrays\ArrayUnpackingRule
  7. {
  1. }
  2. public function createServiceRules__178(): PHPStan\Rules\Arrays\ArrayDestructuringRule
  3. {
  4. return new PHPStan\Rules\Arrays\ArrayDestructuringRule($this->getService('0182'), $this->getService('0131'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\ArrayDestructuringRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__179(): PHPStan\Rules\Arrays\ArrayUnpackingRule
  7. {
  1. }
  2. public function createServiceRules__179(): PHPStan\Rules\Arrays\ArrayUnpackingRule
  3. {
  4. return new PHPStan\Rules\Arrays\ArrayUnpackingRule($this->getService('026'), $this->getService('0182'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Arrays\ArrayUnpackingRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__18(): PHPStan\Rules\Api\ApiClassExtendsRule
  7. {
  1. }
  2. public function createServiceRules__179(): PHPStan\Rules\Arrays\ArrayUnpackingRule
  3. {
  4. return new PHPStan\Rules\Arrays\ArrayUnpackingRule($this->getService('026'), $this->getService('0182'));
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Arrays\ArrayUnpackingRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__18(): PHPStan\Rules\Api\ApiClassExtendsRule
  7. {
  1. }
  2. public function createServiceRules__18(): PHPStan\Rules\Api\ApiClassExtendsRule
  3. {
  4. return new PHPStan\Rules\Api\ApiClassExtendsRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiClassExtendsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__180(): PHPStan\Rules\Arrays\IterableInForeachRule
  7. {
  1. }
  2. public function createServiceRules__18(): PHPStan\Rules\Api\ApiClassExtendsRule
  3. {
  4. return new PHPStan\Rules\Api\ApiClassExtendsRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiClassExtendsRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__180(): PHPStan\Rules\Arrays\IterableInForeachRule
  7. {
  1. }
  2. public function createServiceRules__180(): PHPStan\Rules\Arrays\IterableInForeachRule
  3. {
  4. return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\IterableInForeachRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__181(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule
  7. {
  1. }
  2. public function createServiceRules__181(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule
  3. {
  4. return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\OffsetAccessAssignmentRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__182(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule
  7. {
  1. }
  2. public function createServiceRules__182(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule
  3. {
  4. return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\OffsetAccessAssignOpRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__183(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule
  7. {
  1. }
  2. public function createServiceRules__183(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule
  3. {
  4. return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__184(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule
  7. {
  1. }
  2. public function createServiceRules__184(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule
  3. {
  4. return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Arrays\UnpackIterableInArrayRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__185(): PHPStan\Rules\Exceptions\ThrowExprTypeRule
  7. {
  1. }
  2. public function createServiceRules__185(): PHPStan\Rules\Exceptions\ThrowExprTypeRule
  3. {
  4. return new PHPStan\Rules\Exceptions\ThrowExprTypeRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Exceptions\ThrowExprTypeRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__186(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__186(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule
  3. {
  4. return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('0149'));
    Parameter #1 $returnTypeCheck of class PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule constructor expects PHPStan\Rules\FunctionReturnTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__187(): PHPStan\Rules\Functions\ClosureReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__187(): PHPStan\Rules\Functions\ClosureReturnTypeRule
  3. {
  4. return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('0149'));
    Parameter #1 $returnTypeCheck of class PHPStan\Rules\Functions\ClosureReturnTypeRule constructor expects PHPStan\Rules\FunctionReturnTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__188(): PHPStan\Rules\Functions\ReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__188(): PHPStan\Rules\Functions\ReturnTypeRule
  3. {
  4. return new PHPStan\Rules\Functions\ReturnTypeRule($this->getService('0149'));
    Parameter #1 $returnTypeCheck of class PHPStan\Rules\Functions\ReturnTypeRule constructor expects PHPStan\Rules\FunctionReturnTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__189(): PHPStan\Rules\Generators\YieldTypeRule
  7. {
  1. }
  2. public function createServiceRules__189(): PHPStan\Rules\Generators\YieldTypeRule
  3. {
  4. return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Generators\YieldTypeRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__19(): PHPStan\Rules\Api\ApiClassImplementsRule
  7. {
  1. }
  2. public function createServiceRules__19(): PHPStan\Rules\Api\ApiClassImplementsRule
  3. {
  4. return new PHPStan\Rules\Api\ApiClassImplementsRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiClassImplementsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__190(): PHPStan\Rules\Methods\ReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__19(): PHPStan\Rules\Api\ApiClassImplementsRule
  3. {
  4. return new PHPStan\Rules\Api\ApiClassImplementsRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiClassImplementsRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__190(): PHPStan\Rules\Methods\ReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__190(): PHPStan\Rules\Methods\ReturnTypeRule
  3. {
  4. return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('0149'));
    Parameter #1 $returnTypeCheck of class PHPStan\Rules\Methods\ReturnTypeRule constructor expects PHPStan\Rules\FunctionReturnTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__191(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule
  7. {
  1. }
  2. public function createServiceRules__191(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule
  3. {
  4. return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__192(): PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule
  7. {
  1. }
  2. public function createServiceRules__193(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule($this->getService('0180'), $this->getService('0110'));
    Parameter #2 $constructorsHelper of class PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule constructor expects PHPStan\Reflection\ConstructorsHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__194(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule
  7. {
  1. }
  2. public function createServiceRules__193(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule($this->getService('0180'), $this->getService('0110'));
    Parameter #1 $propertyReflectionFinder of class PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__194(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule
  7. {
  1. }
  2. public function createServiceRules__194(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule($this->getService('0180'), $this->getService('0110'));
    Parameter #2 $constructorsHelper of class PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule constructor expects PHPStan\Reflection\ConstructorsHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__195(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule
  7. {
  1. }
  2. public function createServiceRules__194(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule($this->getService('0180'), $this->getService('0110'));
    Parameter #1 $propertyReflectionFinder of class PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__195(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule
  7. {
  1. }
  2. public function createServiceRules__195(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule($this->getService('0180'));
    Parameter #1 $propertyReflectionFinder of class PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__196(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule
  7. {
  1. }
  2. public function createServiceRules__196(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule
  3. {
  4. return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule($this->getService('0180'));
    Parameter #1 $propertyReflectionFinder of class PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__197(): PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule
  7. {
  1. }
  2. public function createServiceRules__198(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule
  3. {
  4. return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule($this->getService('0182'), $this->getService('0180'));
    Parameter #2 $propertyReflectionFinder of class PHPStan\Rules\Properties\TypesAssignedToPropertiesRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__199(): PHPStan\Rules\Variables\ParameterOutAssignedTypeRule
  7. {
  1. }
  2. public function createServiceRules__198(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule
  3. {
  4. return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule($this->getService('0182'), $this->getService('0180'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Properties\TypesAssignedToPropertiesRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__199(): PHPStan\Rules\Variables\ParameterOutAssignedTypeRule
  7. {
  1. }
  2. public function createServiceRules__199(): PHPStan\Rules\Variables\ParameterOutAssignedTypeRule
  3. {
  4. return new PHPStan\Rules\Variables\ParameterOutAssignedTypeRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Variables\ParameterOutAssignedTypeRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__2(): PHPStan\Rules\Debug\DumpTypeRule
  7. {
  1. }
  2. public function createServiceRules__2(): PHPStan\Rules\Debug\DumpTypeRule
  3. {
  4. return new PHPStan\Rules\Debug\DumpTypeRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Debug\DumpTypeRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__20(): PHPStan\Rules\Api\ApiInterfaceExtendsRule
  7. {
  1. }
  2. public function createServiceRules__20(): PHPStan\Rules\Api\ApiInterfaceExtendsRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInterfaceExtendsRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiInterfaceExtendsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__200(): PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule
  7. {
  1. }
  2. public function createServiceRules__20(): PHPStan\Rules\Api\ApiInterfaceExtendsRule
  3. {
  4. return new PHPStan\Rules\Api\ApiInterfaceExtendsRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiInterfaceExtendsRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__200(): PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule
  7. {
  1. }
  2. public function createServiceRules__200(): PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule
  3. {
  4. return new PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__201(): PHPStan\Rules\Variables\VariableCloningRule
  7. {
  1. }
  2. public function createServiceRules__201(): PHPStan\Rules\Variables\VariableCloningRule
  3. {
  4. return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Variables\VariableCloningRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__202(): PHPStan\Rules\Arrays\DeadForeachRule
  7. {
  1. }
  2. public function createServiceRules__207(): PHPStan\Rules\DeadCode\NoopRule
  3. {
  4. return new PHPStan\Rules\DeadCode\NoopRule($this->getService('023'));
    Parameter #1 $exprPrinter of class PHPStan\Rules\DeadCode\NoopRule constructor expects PHPStan\Node\Printer\ExprPrinter, object given.
    Collective
  5. }
  6. public function createServiceRules__208(): PHPStan\Rules\DeadCode\UnreachableStatementRule
  7. {
  1. }
  2. public function createServiceRules__209(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule
  3. {
  4. return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule($this->getService('0166'));
    Parameter #1 $extensionProvider of class PHPStan\Rules\DeadCode\UnusedPrivateConstantRule constructor expects PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__21(): PHPStan\Rules\Api\ApiMethodCallRule
  7. {
  1. }
  2. public function createServiceRules__21(): PHPStan\Rules\Api\ApiMethodCallRule
  3. {
  4. return new PHPStan\Rules\Api\ApiMethodCallRule($this->getService('0129'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiMethodCallRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__210(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule
  7. {
  1. }
  2. public function createServiceRules__210(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule
  3. {
  4. return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule($this->getService('0167'));
    Parameter #1 $extensionProvider of class PHPStan\Rules\DeadCode\UnusedPrivateMethodRule constructor expects PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__211(): PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule
  7. {
  1. }
  2. public function createServiceRules__212(): PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule
  3. {
  4. return new PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__213(): PHPStan\Rules\Functions\UselessFunctionReturnValueRule
  7. {
  1. }
  2. public function createServiceRules__213(): PHPStan\Rules\Functions\UselessFunctionReturnValueRule
  3. {
  4. return new PHPStan\Rules\Functions\UselessFunctionReturnValueRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\UselessFunctionReturnValueRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__214(): PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule
  7. {
  1. }
  2. public function createServiceRules__214(): PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule
  3. {
  4. return new PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__215(): PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule
  7. {
  1. }
  2. public function createServiceRules__215(): PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule
  3. {
  4. return new PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__216(): PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule
  7. {
  1. public function createServiceRules__216(): PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule
  2. {
  3. return new PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule(
  4. $this->getService('0182'),
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__216(): PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule
  2. {
  3. return new PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule(
  4. $this->getService('0182'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__217(): PHPStan\Rules\Methods\NullsafeMethodCallRule
  1. }
  2. public function createServiceRules__22(): PHPStan\Rules\Api\ApiStaticCallRule
  3. {
  4. return new PHPStan\Rules\Api\ApiStaticCallRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiStaticCallRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__220(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule
  7. {
  1. }
  2. public function createServiceRules__22(): PHPStan\Rules\Api\ApiStaticCallRule
  3. {
  4. return new PHPStan\Rules\Api\ApiStaticCallRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiStaticCallRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__220(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule
  7. {
  1. }
  2. public function createServiceRules__221(): PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule
  3. {
  4. return new PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule($this->getService('0184'));
    Parameter #1 $check of class PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule constructor expects PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__222(): PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule
  7. {
  1. }
  2. public function createServiceRules__222(): PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule
  3. {
  4. return new PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule($this->getService('0184'));
    Parameter #1 $check of class PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule constructor expects PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__223(): PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule
  7. {
  1. }
  2. public function createServiceRules__223(): PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule
  3. {
  4. return new PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule($this->getService('0178'), $this->getService('0180'));
    Parameter #1 $extensionProvider of class PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule constructor expects PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__224(): PHPStan\Rules\Traits\NotAnalysedTraitRule
  7. {
  1. }
  2. public function createServiceRules__223(): PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule
  3. {
  4. return new PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule($this->getService('0178'), $this->getService('0180'));
    Parameter #2 $propertyReflectionFinder of class PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule constructor expects PHPStan\Rules\Properties\PropertyReflectionFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__224(): PHPStan\Rules\Traits\NotAnalysedTraitRule
  7. {
  1. }
  2. public function createServiceRules__226(): PHPStan\Rules\Functions\CallUserFuncRule
  3. {
  4. return new PHPStan\Rules\Functions\CallUserFuncRule($this->getService('reflectionProvider'), $this->getService('0147'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\CallUserFuncRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__227(): PHPStan\Rules\Functions\ParameterCastableToStringRule
  7. {
  1. }
  2. public function createServiceRules__226(): PHPStan\Rules\Functions\CallUserFuncRule
  3. {
  4. return new PHPStan\Rules\Functions\CallUserFuncRule($this->getService('reflectionProvider'), $this->getService('0147'));
    Parameter #2 $check of class PHPStan\Rules\Functions\CallUserFuncRule constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__227(): PHPStan\Rules\Functions\ParameterCastableToStringRule
  7. {
  1. public function createServiceRules__227(): PHPStan\Rules\Functions\ParameterCastableToStringRule
  2. {
  3. return new PHPStan\Rules\Functions\ParameterCastableToStringRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\ParameterCastableToStringRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0150')
  6. );
  7. }
  1. public function createServiceRules__227(): PHPStan\Rules\Functions\ParameterCastableToStringRule
  2. {
  3. return new PHPStan\Rules\Functions\ParameterCastableToStringRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0150')
    Parameter #2 $parameterCastableToStringCheck of class PHPStan\Rules\Functions\ParameterCastableToStringRule constructor expects PHPStan\Rules\ParameterCastableToStringCheck, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__228(): PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule
  1. public function createServiceRules__228(): PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule
  2. {
  3. return new PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0150')
  6. );
  7. }
  1. public function createServiceRules__228(): PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule
  2. {
  3. return new PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0150')
    Parameter #2 $parameterCastableToStringCheck of class PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule constructor expects PHPStan\Rules\ParameterCastableToStringCheck, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__229(): PHPStan\Rules\Functions\SortParameterCastableToStringRule
  1. public function createServiceRules__229(): PHPStan\Rules\Functions\SortParameterCastableToStringRule
  2. {
  3. return new PHPStan\Rules\Functions\SortParameterCastableToStringRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\SortParameterCastableToStringRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0150')
  6. );
  7. }
  1. public function createServiceRules__229(): PHPStan\Rules\Functions\SortParameterCastableToStringRule
  2. {
  3. return new PHPStan\Rules\Functions\SortParameterCastableToStringRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0150')
    Parameter #2 $parameterCastableToStringCheck of class PHPStan\Rules\Functions\SortParameterCastableToStringRule constructor expects PHPStan\Rules\ParameterCastableToStringCheck, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__23(): PHPStan\Rules\Api\ApiTraitUseRule
  1. }
  2. public function createServiceRules__23(): PHPStan\Rules\Api\ApiTraitUseRule
  3. {
  4. return new PHPStan\Rules\Api\ApiTraitUseRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Api\ApiTraitUseRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__230(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule
  7. {
  1. }
  2. public function createServiceRules__23(): PHPStan\Rules\Api\ApiTraitUseRule
  3. {
  4. return new PHPStan\Rules\Api\ApiTraitUseRule($this->getService('0129'), $this->getService('reflectionProvider'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\ApiTraitUseRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__230(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule
  7. {
  1. }
  2. public function createServiceRules__230(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule
  3. {
  4. return new PHPStan\Rules\Regexp\RegularExpressionQuotingRule($this->getService('reflectionProvider'), $this->getService('0280'));
    Parameter #2 $regexExpressionHelper of class PHPStan\Rules\Regexp\RegularExpressionQuotingRule constructor expects PHPStan\Type\Regex\RegexExpressionHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__231(): PHPStan\Rules\Constants\MissingClassConstantTypehintRule
  7. {
  1. }
  2. public function createServiceRules__230(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule
  3. {
  4. return new PHPStan\Rules\Regexp\RegularExpressionQuotingRule($this->getService('reflectionProvider'), $this->getService('0280'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Regexp\RegularExpressionQuotingRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__231(): PHPStan\Rules\Constants\MissingClassConstantTypehintRule
  7. {
  1. }
  2. public function createServiceRules__231(): PHPStan\Rules\Constants\MissingClassConstantTypehintRule
  3. {
  4. return new PHPStan\Rules\Constants\MissingClassConstantTypehintRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Constants\MissingClassConstantTypehintRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__232(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule
  7. {
  1. }
  2. public function createServiceRules__232(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule
  3. {
  4. return new PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__233(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule
  7. {
  1. }
  2. public function createServiceRules__233(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule
  3. {
  4. return new PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__234(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule
  7. {
  1. }
  2. public function createServiceRules__234(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule
  3. {
  4. return new PHPStan\Rules\Methods\MissingMethodParameterTypehintRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Methods\MissingMethodParameterTypehintRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__235(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule
  7. {
  1. }
  2. public function createServiceRules__235(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule
  3. {
  4. return new PHPStan\Rules\Methods\MissingMethodReturnTypehintRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Methods\MissingMethodReturnTypehintRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__236(): PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule
  7. {
  1. }
  2. public function createServiceRules__236(): PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule
  3. {
  4. return new PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__237(): PHPStan\Rules\Properties\MissingPropertyTypehintRule
  7. {
  1. }
  2. public function createServiceRules__237(): PHPStan\Rules\Properties\MissingPropertyTypehintRule
  3. {
  4. return new PHPStan\Rules\Properties\MissingPropertyTypehintRule($this->getService('0164'));
    Parameter #1 $missingTypehintCheck of class PHPStan\Rules\Properties\MissingPropertyTypehintRule constructor expects PHPStan\Rules\MissingTypehintCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__238(): Symplify\PHPStanRules\Rules\Doctrine\NoGetRepositoryOutsideServiceRule
  7. {
  1. }
  2. public function createServiceRules__24(): PHPStan\Rules\Api\GetTemplateTypeRule
  3. {
  4. return new PHPStan\Rules\Api\GetTemplateTypeRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Api\GetTemplateTypeRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__240(): Symplify\PHPStanRules\Rules\Doctrine\NoRepositoryCallInDataFixtureRule
  7. {
  1. }
  2. public function createServiceRules__241(): Symplify\PHPStanRules\Rules\Doctrine\NoGetRepositoryOnServiceRepositoryEntityRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Doctrine\NoGetRepositoryOnServiceRepositoryEntityRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class Symplify\PHPStanRules\Rules\Doctrine\NoGetRepositoryOnServiceRepositoryEntityRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__242(): Symplify\PHPStanRules\Rules\Doctrine\NoDoctrineListenerWithoutContractRule
  7. {
  1. }
  2. public function createServiceRules__246(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\AlreadyRegisteredAutodiscoveryServiceRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\AlreadyRegisteredAutodiscoveryServiceRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\AlreadyRegisteredAutodiscoveryServiceRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__247(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\TaggedIteratorOverRepeatedServiceCallRule
  7. {
  1. }
  2. public function createServiceRules__248(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgsAutowireByTypeRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgsAutowireByTypeRule($this->getService('0470'));
    Parameter #1 $classConstructorTypesResolver of class Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgsAutowireByTypeRule constructor expects Symplify\PHPStanRules\Symfony\Reflection\ClassConstructorTypesResolver, object given.
    Collective
  5. }
  6. public function createServiceRules__249(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgAutowireByTypeRule
  7. {
  1. }
  2. public function createServiceRules__249(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgAutowireByTypeRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgAutowireByTypeRule($this->getService('0470'));
    Parameter #1 $classConstructorTypesResolver of class Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoDuplicateArgAutowireByTypeRule constructor expects Symplify\PHPStanRules\Symfony\Reflection\ClassConstructorTypesResolver, object given.
    Collective
  5. }
  6. public function createServiceRules__25(): PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule
  7. {
  1. }
  2. public function createServiceRules__250(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\PreferAutowireAttributeOverConfigParamRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\PreferAutowireAttributeOverConfigParamRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\PreferAutowireAttributeOverConfigParamRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__251(): Symplify\PHPStanRules\Rules\Symfony\ConfigClosure\NoServiceSameNameSetClassRule
  7. {
  1. }
  2. public function createServiceRules__262(): Symplify\PHPStanRules\Rules\Symfony\RequireRouteNameToGenerateControllerRouteRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Symfony\RequireRouteNameToGenerateControllerRouteRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class Symplify\PHPStanRules\Rules\Symfony\RequireRouteNameToGenerateControllerRouteRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__263(): Symplify\PHPStanRules\Rules\Symfony\NoGetInControllerRule
  7. {
  1. }
  2. public function createServiceRules__27(): PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule
  3. {
  4. return new PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule($this->getService('0129'));
    Parameter #1 $apiRuleHelper of class PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule constructor expects PHPStan\Rules\Api\ApiRuleHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__270(): Symplify\PHPStanRules\Rules\Symfony\RequireIsGrantedEnumRule
  7. {
  1. }
  2. public function createServiceRules__272(): Symplify\PHPStanRules\Rules\NoDynamicNameRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\NoDynamicNameRule($this->getService('0468'));
    Parameter #1 $callableTypeAnalyzer of class Symplify\PHPStanRules\Rules\NoDynamicNameRule constructor expects Symplify\PHPStanRules\TypeAnalyzer\CallableTypeAnalyzer, object given.
    Collective
  5. }
  6. public function createServiceRules__273(): Symplify\PHPStanRules\Rules\Complexity\NoJustPropertyAssignRule
  7. {
  1. }
  2. public function createServiceRules__273(): Symplify\PHPStanRules\Rules\Complexity\NoJustPropertyAssignRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Complexity\NoJustPropertyAssignRule($this->getService('0467'));
    Parameter #1 $phpDocResolver of class Symplify\PHPStanRules\Rules\Complexity\NoJustPropertyAssignRule constructor expects Symplify\PHPStanRules\PhpDoc\PhpDocResolver, object given.
    Collective
  5. }
  6. public function createServiceRules__274(): Symplify\PHPStanRules\Rules\Complexity\NoArrayMapWithArrayCallableRule
  7. {
  1. }
  2. public function createServiceRules__277(): Symplify\PHPStanRules\Rules\NoReturnSetterMethodRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\NoReturnSetterMethodRule($this->getService('0459'));
    Parameter #1 $typeAwareNodeFinder of class Symplify\PHPStanRules\Rules\NoReturnSetterMethodRule constructor expects Symplify\PHPStanRules\NodeFinder\TypeAwareNodeFinder, object given.
    Collective
  5. }
  6. public function createServiceRules__278(): Symplify\PHPStanRules\Rules\UppercaseConstantRule
  7. {
  1. }
  2. public function createServiceRules__279(): Symplify\PHPStanRules\Rules\ClassNameRespectsParentSuffixRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\ClassNameRespectsParentSuffixRule($this->getService('0462'));
    Parameter #1 $classToSuffixResolver of class Symplify\PHPStanRules\Rules\ClassNameRespectsParentSuffixRule constructor expects Symplify\PHPStanRules\Naming\ClassToSuffixResolver, object given.
    Collective
  5. }
  6. public function createServiceRules__28(): PHPStan\Rules\Api\RuntimeReflectionInstantiationRule
  7. {
  1. }
  2. public function createServiceRules__28(): PHPStan\Rules\Api\RuntimeReflectionInstantiationRule
  3. {
  4. return new PHPStan\Rules\Api\RuntimeReflectionInstantiationRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Api\RuntimeReflectionInstantiationRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__280(): Symplify\PHPStanRules\Rules\ForbiddenExtendOfNonAbstractClassRule
  7. {
  1. }
  2. public function createServiceRules__286(): Symplify\PHPStanRules\Rules\Enum\RequireUniqueEnumConstantRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\Enum\RequireUniqueEnumConstantRule($this->getService('0464'));
    Parameter #1 $enumAnalyzer of class Symplify\PHPStanRules\Rules\Enum\RequireUniqueEnumConstantRule constructor expects Symplify\PHPStanRules\NodeAnalyzer\EnumAnalyzer, object given.
    Collective
  5. }
  6. public function createServiceRules__287(): Symplify\PHPStanRules\Rules\PreventParentMethodVisibilityOverrideRule
  7. {
  1. }
  2. public function createServiceRules__287(): Symplify\PHPStanRules\Rules\PreventParentMethodVisibilityOverrideRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\PreventParentMethodVisibilityOverrideRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class Symplify\PHPStanRules\Rules\PreventParentMethodVisibilityOverrideRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__288(): Symplify\PHPStanRules\Rules\ForbiddenMultipleClassLikeInOneFileRule
  7. {
  1. }
  2. public function createServiceRules__289(): Symplify\PHPStanRules\Rules\NoReferenceRule
  3. {
  4. return new Symplify\PHPStanRules\Rules\NoReferenceRule($this->getService('0465'));
    Parameter #1 $parentClassMethodNodeResolver of class Symplify\PHPStanRules\Rules\NoReferenceRule constructor expects Symplify\PHPStanRules\ParentClassMethodNodeResolver, object given.
    Collective
  5. }
  6. public function createServiceRules__29(): PHPStan\Rules\Api\RuntimeReflectionFunctionRule
  7. {
  1. }
  2. public function createServiceRules__29(): PHPStan\Rules\Api\RuntimeReflectionFunctionRule
  3. {
  4. return new PHPStan\Rules\Api\RuntimeReflectionFunctionRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Api\RuntimeReflectionFunctionRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__290(): Symplify\PHPStanRules\Rules\ForbiddenStaticClassConstFetchRule
  7. {
  1. }
  2. public function createServiceRules__3(): PHPStan\Rules\Debug\FileAssertRule
  3. {
  4. return new PHPStan\Rules\Debug\FileAssertRule($this->getService('reflectionProvider'));
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Debug\FileAssertRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__30(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule
  7. {
  1. }
  2. public function createServiceRules__30(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule
  3. {
  4. return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('023'));
    Parameter #1 $exprPrinter of class PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule constructor expects PHPStan\Node\Printer\ExprPrinter, object given.
    Collective
  5. }
  6. public function createServiceRules__31(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule
  7. {
  1. }
  2. public function createServiceRules__32(): PHPStan\Rules\Cast\UnsetCastRule
  3. {
  4. return new PHPStan\Rules\Cast\UnsetCastRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Cast\UnsetCastRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__33(): PHPStan\Rules\Classes\AllowedSubTypesRule
  7. {
  1. }
  2. public function createServiceRules__34(): PHPStan\Rules\Classes\ClassAttributesRule
  3. {
  4. return new PHPStan\Rules\Classes\ClassAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Classes\ClassAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__35(): PHPStan\Rules\Classes\ClassConstantAttributesRule
  7. {
  1. }
  2. public function createServiceRules__35(): PHPStan\Rules\Classes\ClassConstantAttributesRule
  3. {
  4. return new PHPStan\Rules\Classes\ClassConstantAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Classes\ClassConstantAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__36(): PHPStan\Rules\Classes\ClassConstantRule
  7. {
  1. public function createServiceRules__36(): PHPStan\Rules\Classes\ClassConstantRule
  2. {
  3. return new PHPStan\Rules\Classes\ClassConstantRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Classes\ClassConstantRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0182'),
  6. $this->getService('0132'),
  7. $this->getService('026')
  8. );
  9. }
  1. public function createServiceRules__36(): PHPStan\Rules\Classes\ClassConstantRule
  2. {
  3. return new PHPStan\Rules\Classes\ClassConstantRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Classes\ClassConstantRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  6. $this->getService('0132'),
  7. $this->getService('026')
  8. );
  9. }
  1. public function createServiceRules__36(): PHPStan\Rules\Classes\ClassConstantRule
  2. {
  3. return new PHPStan\Rules\Classes\ClassConstantRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0182'),
  6. $this->getService('0132'),
    Parameter #3 $classCheck of class PHPStan\Rules\Classes\ClassConstantRule constructor expects PHPStan\Rules\ClassNameCheck, object given.
    Collective
  7. $this->getService('026')
  8. );
  9. }
  1. {
  2. return new PHPStan\Rules\Classes\ClassConstantRule(
  3. $this->getService('reflectionProvider'),
  4. $this->getService('0182'),
  5. $this->getService('0132'),
  6. $this->getService('026')
    Parameter #4 $phpVersion of class PHPStan\Rules\Classes\ClassConstantRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__37(): PHPStan\Rules\Classes\DuplicateDeclarationRule
  1. public function createServiceRules__4(): PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__4(): PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. $this->getService('0182')
  7. );
  8. }
  1. public function createServiceRules__4(): PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider'),
  6. $this->getService('0182')
    Parameter #3 $ruleLevelHelper of class PHPStan\Rules\RestrictedUsage\RestrictedClassConstantUsageRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  7. );
  8. }
  9. public function createServiceRules__40(): PHPStan\Rules\Classes\InvalidPromotedPropertiesRule
  1. }
  2. public function createServiceRules__40(): PHPStan\Rules\Classes\InvalidPromotedPropertiesRule
  3. {
  4. return new PHPStan\Rules\Classes\InvalidPromotedPropertiesRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Classes\InvalidPromotedPropertiesRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__41(): PHPStan\Rules\Classes\LocalTypeAliasesRule
  7. {
  1. }
  2. public function createServiceRules__41(): PHPStan\Rules\Classes\LocalTypeAliasesRule
  3. {
  4. return new PHPStan\Rules\Classes\LocalTypeAliasesRule($this->getService('0135'));
    Parameter #1 $check of class PHPStan\Rules\Classes\LocalTypeAliasesRule constructor expects PHPStan\Rules\Classes\LocalTypeAliasesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__42(): PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule
  7. {
  1. }
  2. public function createServiceRules__42(): PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule
  3. {
  4. return new PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule($this->getService('0135'));
    Parameter #1 $check of class PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule constructor expects PHPStan\Rules\Classes\LocalTypeAliasesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__43(): PHPStan\Rules\Classes\LocalTypeTraitAliasesRule
  7. {
  1. }
  2. public function createServiceRules__43(): PHPStan\Rules\Classes\LocalTypeTraitAliasesRule
  3. {
  4. return new PHPStan\Rules\Classes\LocalTypeTraitAliasesRule($this->getService('0135'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Classes\LocalTypeTraitAliasesRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__44(): PHPStan\Rules\Classes\NewStaticRule
  7. {
  1. }
  2. public function createServiceRules__43(): PHPStan\Rules\Classes\LocalTypeTraitAliasesRule
  3. {
  4. return new PHPStan\Rules\Classes\LocalTypeTraitAliasesRule($this->getService('0135'), $this->getService('reflectionProvider'));
    Parameter #1 $check of class PHPStan\Rules\Classes\LocalTypeTraitAliasesRule constructor expects PHPStan\Rules\Classes\LocalTypeAliasesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__44(): PHPStan\Rules\Classes\NewStaticRule
  7. {
  1. }
  2. public function createServiceRules__46(): PHPStan\Rules\Classes\ReadOnlyClassRule
  3. {
  4. return new PHPStan\Rules\Classes\ReadOnlyClassRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Classes\ReadOnlyClassRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__47(): PHPStan\Rules\Classes\TraitAttributeClassRule
  7. {
  1. }
  2. public function createServiceRules__49(): PHPStan\Rules\Constants\DynamicClassConstantFetchRule
  3. {
  4. return new PHPStan\Rules\Constants\DynamicClassConstantFetchRule($this->getService('026'), $this->getService('0182'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Constants\DynamicClassConstantFetchRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__5(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule
  7. {
  1. }
  2. public function createServiceRules__49(): PHPStan\Rules\Constants\DynamicClassConstantFetchRule
  3. {
  4. return new PHPStan\Rules\Constants\DynamicClassConstantFetchRule($this->getService('026'), $this->getService('0182'));
    Parameter #2 $ruleLevelHelper of class PHPStan\Rules\Constants\DynamicClassConstantFetchRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__5(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule
  7. {
  1. public function createServiceRules__5(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__5(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedFunctionUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__50(): PHPStan\Rules\Constants\FinalConstantRule
  1. }
  2. public function createServiceRules__50(): PHPStan\Rules\Constants\FinalConstantRule
  3. {
  4. return new PHPStan\Rules\Constants\FinalConstantRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Constants\FinalConstantRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__51(): PHPStan\Rules\Constants\MagicConstantContextRule
  7. {
  1. }
  2. public function createServiceRules__52(): PHPStan\Rules\Constants\NativeTypedClassConstantRule
  3. {
  4. return new PHPStan\Rules\Constants\NativeTypedClassConstantRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Constants\NativeTypedClassConstantRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__53(): PHPStan\Rules\Constants\FinalPrivateConstantRule
  7. {
  1. }
  2. public function createServiceRules__54(): PHPStan\Rules\EnumCases\EnumCaseAttributesRule
  3. {
  4. return new PHPStan\Rules\EnumCases\EnumCaseAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\EnumCases\EnumCaseAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__55(): PHPStan\Rules\Exceptions\NoncapturingCatchRule
  7. {
  1. }
  2. public function createServiceRules__56(): PHPStan\Rules\Exceptions\ThrowExpressionRule
  3. {
  4. return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Exceptions\ThrowExpressionRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__57(): PHPStan\Rules\Functions\ArrowFunctionAttributesRule
  7. {
  1. }
  2. public function createServiceRules__57(): PHPStan\Rules\Functions\ArrowFunctionAttributesRule
  3. {
  4. return new PHPStan\Rules\Functions\ArrowFunctionAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Functions\ArrowFunctionAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__58(): PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule
  7. {
  1. }
  2. public function createServiceRules__58(): PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule
  3. {
  4. return new PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule($this->getService('0165'));
    Parameter #1 $nullsafeCheck of class PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule constructor expects PHPStan\Rules\NullsafeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__59(): PHPStan\Rules\Functions\ClosureAttributesRule
  7. {
  1. }
  2. public function createServiceRules__59(): PHPStan\Rules\Functions\ClosureAttributesRule
  3. {
  4. return new PHPStan\Rules\Functions\ClosureAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Functions\ClosureAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__6(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule
  7. {
  1. public function createServiceRules__6(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__6(): PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedFunctionCallableUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__60(): PHPStan\Rules\Functions\DefineParametersRule
  1. }
  2. public function createServiceRules__60(): PHPStan\Rules\Functions\DefineParametersRule
  3. {
  4. return new PHPStan\Rules\Functions\DefineParametersRule($this->getService('026'));
    Parameter #1 $phpVersion of class PHPStan\Rules\Functions\DefineParametersRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__61(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule
  7. {
  1. public function createServiceRules__61(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule
  2. {
  3. return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule(
  4. $this->getService('0148'),
    Parameter #1 $check of class PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule constructor expects PHPStan\Rules\FunctionDefinitionCheck, object given.
    Collective
  5. $this->getService('026')
  6. );
  7. }
  1. public function createServiceRules__61(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule
  2. {
  3. return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule(
  4. $this->getService('0148'),
  5. $this->getService('026')
    Parameter #2 $phpVersion of class PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__62(): PHPStan\Rules\Functions\CallToFunctionParametersRule
  1. public function createServiceRules__62(): PHPStan\Rules\Functions\CallToFunctionParametersRule
  2. {
  3. return new PHPStan\Rules\Functions\CallToFunctionParametersRule(
  4. $this->getService('reflectionProvider'),
    Parameter #1 $reflectionProvider of class PHPStan\Rules\Functions\CallToFunctionParametersRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. $this->getService('0147')
  6. );
  7. }
  1. public function createServiceRules__62(): PHPStan\Rules\Functions\CallToFunctionParametersRule
  2. {
  3. return new PHPStan\Rules\Functions\CallToFunctionParametersRule(
  4. $this->getService('reflectionProvider'),
  5. $this->getService('0147')
    Parameter #2 $check of class PHPStan\Rules\Functions\CallToFunctionParametersRule constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__63(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule
  1. }
  2. public function createServiceRules__63(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule
  3. {
  4. return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('0148'));
    Parameter #1 $check of class PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule constructor expects PHPStan\Rules\FunctionDefinitionCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__64(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule
  7. {
  1. }
  2. public function createServiceRules__64(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule
  3. {
  4. return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('0148'));
    Parameter #1 $check of class PHPStan\Rules\Functions\ExistingClassesInTypehintsRule constructor expects PHPStan\Rules\FunctionDefinitionCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__65(): PHPStan\Rules\Functions\FunctionAttributesRule
  7. {
  1. }
  2. public function createServiceRules__65(): PHPStan\Rules\Functions\FunctionAttributesRule
  3. {
  4. return new PHPStan\Rules\Functions\FunctionAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Functions\FunctionAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__66(): PHPStan\Rules\Functions\InnerFunctionRule
  7. {
  1. }
  2. public function createServiceRules__68(): PHPStan\Rules\Functions\ParamAttributesRule
  3. {
  4. return new PHPStan\Rules\Functions\ParamAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Functions\ParamAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__69(): PHPStan\Rules\Functions\PrintfArrayParametersRule
  7. {
  1. }
  2. public function createServiceRules__69(): PHPStan\Rules\Functions\PrintfArrayParametersRule
  3. {
  4. return new PHPStan\Rules\Functions\PrintfArrayParametersRule($this->getService('0361'), $this->getService('reflectionProvider'));
    Parameter #1 $printfHelper of class PHPStan\Rules\Functions\PrintfArrayParametersRule constructor expects PHPStan\Rules\Functions\PrintfHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__7(): PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule
  7. {
  1. }
  2. public function createServiceRules__69(): PHPStan\Rules\Functions\PrintfArrayParametersRule
  3. {
  4. return new PHPStan\Rules\Functions\PrintfArrayParametersRule($this->getService('0361'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Functions\PrintfArrayParametersRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__7(): PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule
  7. {
  1. public function createServiceRules__7(): PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__7(): PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedMethodUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__70(): PHPStan\Rules\Functions\PrintfParametersRule
  1. }
  2. public function createServiceRules__70(): PHPStan\Rules\Functions\PrintfParametersRule
  3. {
  4. return new PHPStan\Rules\Functions\PrintfParametersRule($this->getService('0361'), $this->getService('reflectionProvider'));
    Parameter #1 $printfHelper of class PHPStan\Rules\Functions\PrintfParametersRule constructor expects PHPStan\Rules\Functions\PrintfHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__71(): PHPStan\Rules\Functions\RedefinedParametersRule
  7. {
  1. }
  2. public function createServiceRules__70(): PHPStan\Rules\Functions\PrintfParametersRule
  3. {
  4. return new PHPStan\Rules\Functions\PrintfParametersRule($this->getService('0361'), $this->getService('reflectionProvider'));
    Parameter #2 $reflectionProvider of class PHPStan\Rules\Functions\PrintfParametersRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  5. }
  6. public function createServiceRules__71(): PHPStan\Rules\Functions\RedefinedParametersRule
  7. {
  1. }
  2. public function createServiceRules__72(): PHPStan\Rules\Functions\ReturnNullsafeByRefRule
  3. {
  4. return new PHPStan\Rules\Functions\ReturnNullsafeByRefRule($this->getService('0165'));
    Parameter #1 $nullsafeCheck of class PHPStan\Rules\Functions\ReturnNullsafeByRefRule constructor expects PHPStan\Rules\NullsafeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__73(): PHPStan\Rules\Ignore\IgnoreParseErrorRule
  7. {
  1. }
  2. public function createServiceRules__76(): PHPStan\Rules\Keywords\DeclareStrictTypesRule
  3. {
  4. return new PHPStan\Rules\Keywords\DeclareStrictTypesRule($this->getService('023'));
    Parameter #1 $exprPrinter of class PHPStan\Rules\Keywords\DeclareStrictTypesRule constructor expects PHPStan\Node\Printer\ExprPrinter, object given.
    Collective
  5. }
  6. public function createServiceRules__77(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule
  7. {
  1. }
  2. public function createServiceRules__79(): PHPStan\Rules\Methods\CallMethodsRule
  3. {
  4. return new PHPStan\Rules\Methods\CallMethodsRule($this->getService('0159'), $this->getService('0147'));
    Parameter #2 $parametersCheck of class PHPStan\Rules\Methods\CallMethodsRule constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__8(): PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule
  7. {
  1. }
  2. public function createServiceRules__79(): PHPStan\Rules\Methods\CallMethodsRule
  3. {
  4. return new PHPStan\Rules\Methods\CallMethodsRule($this->getService('0159'), $this->getService('0147'));
    Parameter #1 $methodCallCheck of class PHPStan\Rules\Methods\CallMethodsRule constructor expects PHPStan\Rules\Methods\MethodCallCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__8(): PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule
  7. {
  1. public function createServiceRules__8(): PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__8(): PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedMethodCallableUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__80(): PHPStan\Rules\Methods\CallStaticMethodsRule
  1. }
  2. public function createServiceRules__80(): PHPStan\Rules\Methods\CallStaticMethodsRule
  3. {
  4. return new PHPStan\Rules\Methods\CallStaticMethodsRule($this->getService('0160'), $this->getService('0147'));
    Parameter #2 $parametersCheck of class PHPStan\Rules\Methods\CallStaticMethodsRule constructor expects PHPStan\Rules\FunctionCallParametersCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__81(): PHPStan\Rules\Methods\ConsistentConstructorRule
  7. {
  1. }
  2. public function createServiceRules__80(): PHPStan\Rules\Methods\CallStaticMethodsRule
  3. {
  4. return new PHPStan\Rules\Methods\CallStaticMethodsRule($this->getService('0160'), $this->getService('0147'));
    Parameter #1 $methodCallCheck of class PHPStan\Rules\Methods\CallStaticMethodsRule constructor expects PHPStan\Rules\Methods\StaticMethodCallCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__81(): PHPStan\Rules\Methods\ConsistentConstructorRule
  7. {
  1. }
  2. public function createServiceRules__81(): PHPStan\Rules\Methods\ConsistentConstructorRule
  3. {
  4. return new PHPStan\Rules\Methods\ConsistentConstructorRule($this->getService('0162'), $this->getService('0163'));
    Parameter #2 $methodVisibilityComparisonHelper of class PHPStan\Rules\Methods\ConsistentConstructorRule constructor expects PHPStan\Rules\Methods\MethodVisibilityComparisonHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__82(): PHPStan\Rules\Methods\ConstructorReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__81(): PHPStan\Rules\Methods\ConsistentConstructorRule
  3. {
  4. return new PHPStan\Rules\Methods\ConsistentConstructorRule($this->getService('0162'), $this->getService('0163'));
    Parameter #1 $methodParameterComparisonHelper of class PHPStan\Rules\Methods\ConsistentConstructorRule constructor expects PHPStan\Rules\Methods\MethodParameterComparisonHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__82(): PHPStan\Rules\Methods\ConstructorReturnTypeRule
  7. {
  1. }
  2. public function createServiceRules__83(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule
  3. {
  4. return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('0148'));
    Parameter #1 $check of class PHPStan\Rules\Methods\ExistingClassesInTypehintsRule constructor expects PHPStan\Rules\FunctionDefinitionCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__84(): PHPStan\Rules\Methods\FinalPrivateMethodRule
  7. {
  1. }
  2. public function createServiceRules__85(): PHPStan\Rules\Methods\MethodCallableRule
  3. {
  4. return new PHPStan\Rules\Methods\MethodCallableRule($this->getService('0159'), $this->getService('026'));
    Parameter #1 $methodCallCheck of class PHPStan\Rules\Methods\MethodCallableRule constructor expects PHPStan\Rules\Methods\MethodCallCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__86(): PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule
  7. {
  1. }
  2. public function createServiceRules__85(): PHPStan\Rules\Methods\MethodCallableRule
  3. {
  4. return new PHPStan\Rules\Methods\MethodCallableRule($this->getService('0159'), $this->getService('026'));
    Parameter #2 $phpVersion of class PHPStan\Rules\Methods\MethodCallableRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__86(): PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule
  7. {
  1. }
  2. public function createServiceRules__87(): PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule
  3. {
  4. return new PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule($this->getService('026'));
    Parameter #1 $phpversion of class PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__88(): PHPStan\Rules\Methods\MissingMethodImplementationRule
  7. {
  1. }
  2. public function createServiceRules__89(): PHPStan\Rules\Methods\MethodAttributesRule
  3. {
  4. return new PHPStan\Rules\Methods\MethodAttributesRule($this->getService('0130'));
    Parameter #1 $attributesCheck of class PHPStan\Rules\Methods\MethodAttributesRule constructor expects PHPStan\Rules\AttributesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__9(): PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule
  7. {
  1. public function createServiceRules__9(): PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule(
  4. $this->getService('075'),
    Parameter #1 $container of class PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. $this->getService('reflectionProvider')
  6. );
  7. }
  1. public function createServiceRules__9(): PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule
  2. {
  3. return new PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule(
  4. $this->getService('075'),
  5. $this->getService('reflectionProvider')
    Parameter #2 $reflectionProvider of class PHPStan\Rules\RestrictedUsage\RestrictedPropertyUsageRule constructor expects PHPStan\Reflection\ReflectionProvider, object given.
    Collective
  6. );
  7. }
  8. public function createServiceRules__90(): PHPStan\Rules\Methods\StaticMethodCallableRule
  1. }
  2. public function createServiceRules__90(): PHPStan\Rules\Methods\StaticMethodCallableRule
  3. {
  4. return new PHPStan\Rules\Methods\StaticMethodCallableRule($this->getService('0160'), $this->getService('026'));
    Parameter #2 $phpVersion of class PHPStan\Rules\Methods\StaticMethodCallableRule constructor expects PHPStan\Php\PhpVersion, object given.
    Collective
  5. }
  6. public function createServiceRules__91(): PHPStan\Rules\Names\UsedNamesRule
  7. {
  1. }
  2. public function createServiceRules__90(): PHPStan\Rules\Methods\StaticMethodCallableRule
  3. {
  4. return new PHPStan\Rules\Methods\StaticMethodCallableRule($this->getService('0160'), $this->getService('026'));
    Parameter #1 $methodCallCheck of class PHPStan\Rules\Methods\StaticMethodCallableRule constructor expects PHPStan\Rules\Methods\StaticMethodCallCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__91(): PHPStan\Rules\Names\UsedNamesRule
  7. {
  1. }
  2. public function createServiceRules__92(): PHPStan\Rules\Operators\InvalidAssignVarRule
  3. {
  4. return new PHPStan\Rules\Operators\InvalidAssignVarRule($this->getService('0165'));
    Parameter #1 $nullsafeCheck of class PHPStan\Rules\Operators\InvalidAssignVarRule constructor expects PHPStan\Rules\NullsafeCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__93(): PHPStan\Rules\Operators\InvalidIncDecOperationRule
  7. {
  1. }
  2. public function createServiceRules__93(): PHPStan\Rules\Operators\InvalidIncDecOperationRule
  3. {
  4. return new PHPStan\Rules\Operators\InvalidIncDecOperationRule($this->getService('0182'));
    Parameter #1 $ruleLevelHelper of class PHPStan\Rules\Operators\InvalidIncDecOperationRule constructor expects PHPStan\Rules\RuleLevelHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__94(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule
  7. {
  1. }
  2. public function createServiceRules__94(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0175'));
    Parameter #1 $check of class PHPStan\Rules\Properties\AccessPropertiesInAssignRule constructor expects PHPStan\Rules\Properties\AccessPropertiesCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__95(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule
  7. {
  1. }
  2. public function createServiceRules__95(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0386'));
    Parameter #1 $accessStaticPropertiesRule of class PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule constructor expects PHPStan\Rules\Properties\AccessStaticPropertiesRule, object given.
    Collective
  5. }
  6. public function createServiceRules__96(): PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule
  7. {
  1. }
  2. public function createServiceRules__96(): PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule
  3. {
  4. return new PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule($this->getService('0148'));
    Parameter #1 $check of class PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule constructor expects PHPStan\Rules\FunctionDefinitionCheck, object given.
    Collective
  5. }
  6. public function createServiceRules__97(): PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule
  7. {
  1. }
  2. public function createServiceRules__98(): PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule($this->getService('0110'));
    Parameter #1 $constructorsHelper of class PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule constructor expects PHPStan\Reflection\ConstructorsHelper, object given.
    Collective
  5. }
  6. public function createServiceRules__99(): PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule
  7. {
  1. }
  2. public function createServiceRules__99(): PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule
  3. {
  4. return new PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule($this->getService('0110'));
    Parameter #1 $constructorsHelper of class PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule constructor expects PHPStan\Reflection\ConstructorsHelper, object given.
    Collective
  5. }
  6. public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper
  7. {
  1. public function createServiceStubFileTypeMapper(): PHPStan\Type\FileTypeMapper
  2. {
  3. return new PHPStan\Type\FileTypeMapper(
  4. $this->getService('0122'),
    Parameter #1 $reflectionProviderProvider of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider, object given.
    Collective
  5. $this->getService('stubParser'),
  6. $this->getService('038'),
  7. $this->getService('037'),
  8. $this->getService('025'),
  9. $this->getService('085')
  1. public function createServiceStubFileTypeMapper(): PHPStan\Type\FileTypeMapper
  2. {
  3. return new PHPStan\Type\FileTypeMapper(
  4. $this->getService('0122'),
  5. $this->getService('stubParser'),
    Parameter #2 $phpParser of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\Parser\Parser, object given.
    Collective
  6. $this->getService('038'),
  7. $this->getService('037'),
  8. $this->getService('025'),
  9. $this->getService('085')
  10. );
  1. public function createServiceStubFileTypeMapper(): PHPStan\Type\FileTypeMapper
  2. {
  3. return new PHPStan\Type\FileTypeMapper(
  4. $this->getService('0122'),
  5. $this->getService('stubParser'),
  6. $this->getService('038'),
    Parameter #3 $phpDocStringResolver of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\PhpDoc\PhpDocStringResolver, object given.
    Collective
  7. $this->getService('037'),
  8. $this->getService('025'),
  9. $this->getService('085')
  10. );
  11. }
  1. {
  2. return new PHPStan\Type\FileTypeMapper(
  3. $this->getService('0122'),
  4. $this->getService('stubParser'),
  5. $this->getService('038'),
  6. $this->getService('037'),
    Parameter #4 $phpDocNodeResolver of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\PhpDoc\PhpDocNodeResolver, object given.
    Collective
  7. $this->getService('025'),
  8. $this->getService('085')
  9. );
  10. }
  1. return new PHPStan\Type\FileTypeMapper(
  2. $this->getService('0122'),
  3. $this->getService('stubParser'),
  4. $this->getService('038'),
  5. $this->getService('037'),
  6. $this->getService('025'),
    Parameter #5 $anonymousClassNameHelper of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\Broker\AnonymousClassNameHelper, object given.
    Collective
  7. $this->getService('085')
  8. );
  9. }
  1. $this->getService('0122'),
  2. $this->getService('stubParser'),
  3. $this->getService('038'),
  4. $this->getService('037'),
  5. $this->getService('025'),
  6. $this->getService('085')
    Parameter #6 $fileHelper of class PHPStan\Type\FileTypeMapper constructor expects PHPStan\File\FileHelper, object given.
    Collective
  7. );
  8. }
  9. public function createServiceStubParser(): PHPStan\Parser\CachedParser
  1. }
  2. public function createServiceStubParser(): PHPStan\Parser\CachedParser
  3. {
  4. return new PHPStan\Parser\CachedParser($this->getService('freshStubParser'), 256);
    Parameter #1 $originalParser of class PHPStan\Parser\CachedParser constructor expects PHPStan\Parser\Parser, object given.
    Collective
  5. }
  6. public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider
  7. {
  1. public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider
  2. {
  3. return new PHPStan\PhpDoc\StubPhpDocProvider(
  4. $this->getService('stubParser'),
    Parameter #1 $parser of class PHPStan\PhpDoc\StubPhpDocProvider constructor expects PHPStan\Parser\Parser, object given.
    Collective
  5. $this->getService('stubFileTypeMapper'),
  6. $this->getService('045')
  7. );
  8. }
  1. public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider
  2. {
  3. return new PHPStan\PhpDoc\StubPhpDocProvider(
  4. $this->getService('stubParser'),
  5. $this->getService('stubFileTypeMapper'),
    Parameter #2 $fileTypeMapper of class PHPStan\PhpDoc\StubPhpDocProvider constructor expects PHPStan\Type\FileTypeMapper, object given.
    Collective
  6. $this->getService('045')
  7. );
  8. }
  1. public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider
  2. {
  3. return new PHPStan\PhpDoc\StubPhpDocProvider(
  4. $this->getService('stubParser'),
  5. $this->getService('stubFileTypeMapper'),
  6. $this->getService('045')
    Parameter #3 $stubFilesProvider of class PHPStan\PhpDoc\StubPhpDocProvider constructor expects PHPStan\PhpDoc\StubFilesProvider, object given.
    Collective
  7. );
  8. }
  9. public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier
  1. }
  2. public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory
  3. {
  4. return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('075'));
    Parameter #1 $container of class PHPStan\Analyser\TypeSpecifierFactory constructor expects PHPStan\DependencyInjection\Container, object given.
    Collective
  5. }
  6. public function initialize(): void
  7. {

Your project should only use iterable types in foreach loops

More information: https://insight.symfony.com/what-we-analyse/php.invalid_foreach_iterable

  1. * @return array $roles
  2. */
  3. public function getRoles()
  4. {
  5. $roles = [];
  6. foreach ($this->secured_routes as $secured_route) {
    Argument of an invalid type mixed supplied for foreach, only iterables are supported.
    Last edited by Simon Libaud
  7. $roles[] = $this->routeToRoleConverter->generateRoleForRoute($secured_route);
  8. }
  9. return $roles;
  10. }

Your project should not use invalid parameter and return typehints 4

More information: https://insight.symfony.com/what-we-analyse/php.invalid_typehint

  1. * RolesProvider constructor.
  2. *
  3. * @param NamingStrategyInterface $routeToRoleConverter
  4. * @param array $secured_routes
  5. */
  6. public function __construct(NamingStrategyInterface $routeToRoleConverter, $secured_routes)
    Method Sil\RouteSecurityBundle\Role\RolesProvider::__construct() has parameter $secured_routes with no value type specified in iterable type array.
    Last edited by Simon Libaud
  7. {
  8. $this->routeToRoleConverter = $routeToRoleConverter;
  9. $this->secured_routes = $secured_routes;
  10. }
  1. private $secured_routes;
  2. private $secured_routes_format;
  3. private $ignored_routes;
  4. private $ignored_routes_format;
  5. public function __construct(RouterInterface $router, NamingStrategyInterface $routeToRoleConverter, array $configuration)
    Method Sil\RouteSecurityBundle\Security\AccessControl::__construct() has parameter $configuration with no value type specified in iterable type array.
    Last edited by Simon Libaud
  6. {
  7. $this->router = $router;
  8. $this->routeToRoleConverter = $routeToRoleConverter;
  9. $this->is_access_control_enable = $configuration['enable_access_control'];
  1. * @param UserInterface $user
  2. * @param array $routes
  3. *
  4. * @return bool
  5. */
  6. public function hasUserAccessToRoutes(UserInterface $user, array $routes): bool
    Method Sil\RouteSecurityBundle\Security\AccessControl::hasUserAccessToRoutes() has parameter $routes with no value type specified in iterable type array.
    Last edited by Simon Libaud
  7. {
  8. foreach ($routes as $route) {
  9. if (false === $this->hasUserAccessToRoute($user, $route)) {
  10. return false;
  11. }
  1. * @param UserInterface $user
  2. * @param $routes
  3. *
  4. * @return bool
  5. */
  6. public function hasUserAccessAtLeastOneRoute(UserInterface $user, array $routes): bool
    Method Sil\RouteSecurityBundle\Security\AccessControl::hasUserAccessAtLeastOneRoute() has parameter $routes with no value type specified in iterable type array.
    Last edited by Simon Libaud
  7. {
  8. foreach ($routes as $route) {
  9. if (true === $this->hasUserAccessToRoute($user, $route)) {
  10. return true;
  11. }

Your project should use return types 2

More information: https://insight.symfony.com/what-we-analyse/php.missing_return_typehint

  1. /**
  2. * Get roles for secured routes.
  3. *
  4. * @return array $roles
  5. */
  6. public function getRoles()
    Method Sil\RouteSecurityBundle\Role\RolesProvider::getRoles() return type has no value type specified in iterable type array.
    Last edited by Simon Libaud
  7. {
  8. $roles = [];
  9. foreach ($this->secured_routes as $secured_route) {
  10. $roles[] = $this->routeToRoleConverter->generateRoleForRoute($secured_route);
  11. }
  1. /**
  2. * Return all secured routes manage by the bundle
  3. *
  4. * @return array
  5. */
  6. public function getAllSecuredRoutes(): array
    Method Sil\RouteSecurityBundle\Security\AccessControl::getAllSecuredRoutes() return type has no value type specified in iterable type array.
    Last edited by Simon Libaud
  7. {
  8. $all_secured_routes = [];
  9. $configured_routes = array_keys($this->router->getRouteCollection()->all());
  10. foreach ($configured_routes as $configured_route) if (true === $this->isRouteSecure($configured_route)){

Your project should not use invalid return types 13

More information: https://insight.symfony.com/what-we-analyse/php.invalid_return_typehint

  1. /**
  2. * @return bool
  3. */
  4. public function isEnable(): bool
  5. {
  6. return $this->is_access_control_enable;
    Method Sil\RouteSecurityBundle\Security\AccessControl::isEnable() should return bool but returns mixed.
    Last edited by Simon Libaud
  7. }
  8. }
  1. $this->data['role_for_route'] = $this->routeToRoleConverter->generateRoleForRoute($route);
  2. }
  3. public function isAccessControlEnable(): bool
  4. {
  5. return $this->data['is_access_control_enable'];
    Method Sil\RouteSecurityBundle\WebProfiler\RouteSecurityTools::isAccessControlEnable() should return bool but returns mixed.
    Last edited by Simon Libaud
  6. }
  7. public function isRouteSecure(): bool
  8. {
  9. return $this->data['is_route_secure'];
  1. return $this->data['is_access_control_enable'];
  2. }
  3. public function isRouteSecure(): bool
  4. {
  5. return $this->data['is_route_secure'];
    Method Sil\RouteSecurityBundle\WebProfiler\RouteSecurityTools::isRouteSecure() should return bool but returns mixed.
    Last edited by Simon Libaud
  6. }
  7. public function getRoleForRoute(): string
  8. {
  9. return $this->data['role_for_route'];
  1. return $this->data['is_route_secure'];
  2. }
  3. public function getRoleForRoute(): string
  4. {
  5. return $this->data['role_for_route'];
    Method Sil\RouteSecurityBundle\WebProfiler\RouteSecurityTools::getRoleForRoute() should return string but returns mixed.
    Last edited by Simon Libaud
  6. }
  7. public function getName(): string
  8. {
  9. return 'sil_route_security.route_security_tools';
  1. }
  2. public function createService026(): PHPStan\Php\PhpVersion
  3. {
  4. return $this->getService('027')->create();
    Method Container_6ed28bcd95::createService026() should return PHPStan\Php\PhpVersion but returns mixed.
    Collective
  5. }
  6. public function createService027(): PHPStan\Php\PhpVersionFactory
  7. {
  1. }
  2. public function createService027(): PHPStan\Php\PhpVersionFactory
  3. {
  4. return $this->getService('028')->create();
    Method Container_6ed28bcd95::createService027() should return PHPStan\Php\PhpVersionFactory but returns mixed.
    Collective
  5. }
  6. public function createService028(): PHPStan\Php\PhpVersionFactoryFactory
  7. {
  1. }
  2. public function createService060(): PHPStan\Analyser\ConstantResolver
  3. {
  4. return $this->getService('061')->create();
    Method Container_6ed28bcd95::createService060() should return PHPStan\Analyser\ConstantResolver but returns mixed.
    Collective
  5. }
  6. public function createService061(): PHPStan\Analyser\ConstantResolverFactory
  7. {
  1. }
  2. public function createService066(): PHPStan\Collectors\Registry
  3. {
  4. return $this->getService('067')->create();
    Method Container_6ed28bcd95::createService066() should return PHPStan\Collectors\Registry but returns mixed.
    Collective
  5. }
  6. public function createService067(): PHPStan\Collectors\RegistryFactory
  7. {
  1. }
  2. public function createService0128(): PHPStan\Reflection\SignatureMap\SignatureMapProvider
  3. {
  4. return $this->getService('0127')->create();
    Method Container_6ed28bcd95::createService0128() should return PHPStan\Reflection\SignatureMap\SignatureMapProvider but returns mixed.
    Collective
  5. }
  6. public function createService0129(): PHPStan\Rules\Api\ApiRuleHelper
  7. {
  1. }
  2. public function createService0365(): PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber
  3. {
  4. return $this->getService('0364')->create();
    Method Container_6ed28bcd95::createService0365() should return PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber but returns mixed.
    Collective
  5. }
  6. public function createService0366(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber
  7. {
  1. }
  2. public function createService0366(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber
  3. {
  4. return $this->getService('0367')->create();
    Method Container_6ed28bcd95::createService0366() should return PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber but returns mixed.
    Collective
  5. }
  6. public function createService0367(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory
  7. {
  1. }
  2. public function createServiceBetterReflectionSourceLocator(): PHPStan\BetterReflection\SourceLocator\Type\SourceLocator
  3. {
  4. return $this->getService('0362')->create();
    Method Container_6ed28bcd95::createServiceBetterReflectionSourceLocator() should return PHPStan\BetterReflection\SourceLocator\Type\SourceLocator but returns mixed.
    Collective
  5. }
  6. public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage
  7. {
  1. }
  2. public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer
  3. {
  4. return $this->getService('02')->create();
    Method Container_6ed28bcd95::createServiceCurrentPhpVersionLexer() should return PhpParser\Lexer but returns mixed.
    Collective
  5. }
  6. public function createServiceCurrentPhpVersionPhpParser(): PhpParser\ParserAbstract
  7. {

Your project inheritance architecture should be valid

More information: https://insight.symfony.com/what-we-analyse/php.invalid_inheritance

  1. /** @noinspection PhpParamsInspection,PhpMethodMayBeStaticInspection */
  2. declare(strict_types=1);
  3. class Container_6ed28bcd95 extends _PHPStan_ac6dae9b0\Nette\DI\Container
    Referencing prefixed PHPStan class: _PHPStan_ac6dae9b0\Nette\DI\Container.
    Collective
  4. {
  5. protected $tags = [
  6. 'phpstan.parser.richParserNodeVisitor' => [
  7. '04' => true,
  8. '05' => true,