Skip to content

Instantly share code, notes, and snippets.

@TysonAndre
Created April 17, 2017 04:36
Show Gist options
  • Save TysonAndre/91bed0e16583301f1e6e5cc2a4807081 to your computer and use it in GitHub Desktop.
Save TysonAndre/91bed0e16583301f1e6e5cc2a4807081 to your computer and use it in GitHub Desktop.
Phan run on symfony (Uses some phan patches that are still in review)
<?php
use \Phan\Issue;
/**
* This configuration will be read and overlayed on top of the
* default configuration. Command line arguments will be applied
* after this file is read.
*
* @see src/Phan/Config.php
* See Config for all configurable options.
*
* A Note About Paths
* ==================
*
* Files referenced from this file should be defined as
*
* ```
* Config::projectPath('relative_path/to/file')
* ```
*
* where the relative path is relative to the root of the
* project which is defined as either the working directory
* of the phan executable or a path passed in via the CLI
* '-d' flag.
*/
return [
// If true, missing properties will be created when
// they are first seen. If false, we'll report an
// error message.
"allow_missing_properties" => false,
// Allow null to be cast as any type and for any
// type to be cast to null.
"null_casts_as_any_type" => false,
// If enabled, scalars (int, float, bool, string, null)
// are treated as if they can cast to each other.
'scalar_implicit_cast' => false,
// If true, seemingly undeclared variables in the global
// scope will be ignored. This is useful for projects
// with complicated cross-file globals that you have no
// hope of fixing.
'ignore_undeclared_variables_in_global_scope' => false,
// Backwards Compatibility Checking
'backward_compatibility_checks' => false,
// If enabled, check all methods that override a
// parent method to make sure its signature is
// compatible with the parent's. This check
// can add quite a bit of time to the analysis.
'analyze_signature_compatibility' => true,
// Set to true in order to attempt to detect dead
// (unreferenced) code. Keep in mind that the
// results will only be a guess given that classes,
// properties, constants and methods can be referenced
// as variables (like `$class->$property` or
// `$class->$method()`) in ways that we're unable
// to make sense of.
'dead_code_detection' => false,
// Run a quick version of checks that takes less
// time
"quick_mode" => false,
// Enable or disable support for generic templated
// class types.
'generic_types_enabled' => true,
// By default, Phan will not analyze all node types
// in order to save time. If this config is set to true,
// Phan will dig deeper into the AST tree and do an
// analysis on all nodes, possibly finding more issues.
//
// See \Phan\Analysis::shouldVisit for the set of skipped
// nodes.
'should_visit_all_nodes' => true,
// Override if runkit.superglobal ini directive is used.
// See Phan\Config.
'runkit_superglobals' => [],
// Override to hardcode existence and types of (non-builtin) globals.
// Class names must be prefixed with '\\'.
'globals_type_map' => [],
// The minimum severity level to report on. This can be
// set to Issue::SEVERITY_LOW, Issue::SEVERITY_NORMAL or
// Issue::SEVERITY_CRITICAL.
'minimum_severity' => Issue::SEVERITY_LOW,
// Add any issue types (such as 'PhanUndeclaredMethod')
// here to inhibit them from being reported
'suppress_issue_types' => [
'PhanAccessConstantInternal',
'PhanAccessClassInternal',
'PhanAccessClassConstantInternal',
'PhanAccessPropertyInternal',
'PhanAccessMethodInternal',
'PhanParamSignatureMismatch', // Use PhanParamSignatureRealMismatch instead
'PhanParamSignatureMismatchInternal', // Use PhanParamSignatureRealMismatchInternal instead
// 'PhanUndeclaredMethod',
],
// If empty, no filter against issues types will be applied.
// If non-empty, only issues within the list will be emitted
// by Phan.
'whitelist_issue_types' => [
// 'PhanAccessMethodPrivate',
// 'PhanAccessMethodProtected',
// 'PhanAccessNonStaticToStatic',
// 'PhanAccessPropertyPrivate',
// 'PhanAccessPropertyProtected',
// 'PhanAccessSignatureMismatch',
// 'PhanAccessSignatureMismatchInternal',
// 'PhanAccessStaticToNonStatic',
// 'PhanCompatibleExpressionPHP7',
// 'PhanCompatiblePHP7',
// 'PhanContextNotObject',
// 'PhanDeprecatedClass',
// 'PhanDeprecatedFunction',
// 'PhanDeprecatedProperty',
// 'PhanEmptyFile',
// 'PhanNonClassMethodCall',
// 'PhanNoopArray',
// 'PhanNoopClosure',
// 'PhanNoopConstant',
// 'PhanNoopProperty',
// 'PhanNoopVariable',
// 'PhanParamRedefined',
// 'PhanParamReqAfterOpt',
// 'PhanParamSignatureMismatch',
// 'PhanParamSignatureMismatchInternal',
// 'PhanParamSpecial1',
// 'PhanParamSpecial2',
// 'PhanParamSpecial3',
// 'PhanParamSpecial4',
// 'PhanParamTooFew',
// 'PhanParamTooFewInternal',
// 'PhanParamTooMany',
// 'PhanParamTooManyInternal',
// 'PhanParamTypeMismatch',
// 'PhanParentlessClass',
// 'PhanRedefineClass',
// 'PhanRedefineClassInternal',
// 'PhanRedefineFunction',
// 'PhanRedefineFunctionInternal',
// 'PhanStaticCallToNonStatic',
// 'PhanSyntaxError',
// 'PhanTraitParentReference',
// 'PhanTypeArrayOperator',
// 'PhanTypeArraySuspicious',
// 'PhanTypeComparisonFromArray',
// 'PhanTypeComparisonToArray',
// 'PhanTypeConversionFromArray',
// 'PhanTypeInstantiateAbstract',
// 'PhanTypeInstantiateInterface',
// 'PhanTypeInvalidLeftOperand',
// 'PhanTypeInvalidRightOperand',
// 'PhanTypeMismatchArgument',
// 'PhanTypeMismatchArgumentInternal',
// 'PhanTypeMismatchDefault',
// 'PhanTypeMismatchForeach',
// 'PhanTypeMismatchProperty',
// 'PhanTypeMismatchReturn',
// 'PhanTypeMissingReturn',
// 'PhanTypeNonVarPassByRef',
// 'PhanTypeParentConstructorCalled',
// 'PhanTypeVoidAssignment',
// 'PhanUnanalyzable',
// 'PhanUndeclaredClass',
// 'PhanUndeclaredClassCatch',
// 'PhanUndeclaredClassConstant',
// 'PhanUndeclaredClassInstanceof',
// 'PhanUndeclaredClassMethod',
// 'PhanUndeclaredClassReference',
// 'PhanUndeclaredConstant',
// 'PhanUndeclaredExtendedClass',
// 'PhanUndeclaredFunction',
// 'PhanUndeclaredInterface',
// 'PhanUndeclaredMethod',
// 'PhanUndeclaredProperty',
// 'PhanUndeclaredStaticMethod',
// 'PhanUndeclaredStaticProperty',
// 'PhanUndeclaredTrait',
// 'PhanUndeclaredTypeParameter',
// 'PhanUndeclaredTypeProperty',
// 'PhanUndeclaredVariable',
// 'PhanUnreferencedClass',
// 'PhanUnreferencedConstant',
// 'PhanUnreferencedMethod',
// 'PhanUnreferencedProperty',
// 'PhanVariableUseClause',
],
// A list of files to include in analysis
'file_list' => [
// 'vendor/phpunit/phpunit/src/Framework/TestCase.php',
],
// A regular expression to match files to be excluded
// from parsing and analysis and will not be read at all.
//
// This is useful for excluding groups of test or example
// directories/files, unanalyzable files, or files that
// can't be removed for whatever reason.
// (e.g. '@Test\.php$@', or '@vendor/.*/(tests|Tests)/@')
'exclude_file_regex' => '@(src|vendor)/.*/[^/]*(tests|Tests)/@',
// A file list that defines files that will be excluded
// from parsing and analysis and will not be read at all.
//
// This is useful for excluding hopelessly unanalyzable
// files that can't be removed for whatever reason.
'exclude_file_list' => [],
// The number of processes to fork off during the analysis
// phase.
'processes' => 1,
// A list of directories that should be parsed for class and
// method information. After excluding the directories
// defined in exclude_analysis_directory_list, the remaining
// files will be statically analyzed for errors.
//
// Thus, both first-party and third-party code being used by
// your application should be included in this list.
'directory_list' => [
'src/',
'vendor/',
],
// List of case-insensitive file extensions supported by Phan.
// (e.g. php, html, htm)
'analyzed_file_extensions' => ['php'],
// A directory list that defines files that will be excluded
// from static analysis, but whose class and method
// information should be included.
//
// Generally, you'll want to include the directories for
// third-party code (such as "vendor/") in this list.
//
// n.b.: If you'd like to parse but not analyze 3rd
// party code, directories containing that code
// should be added to the `directory_list` as
// to `exclude_analysis_directory_list`.
"exclude_analysis_directory_list" => [
'vendor/'
],
// A list of plugin files to execute
'plugins' => [ ],
];
src/Symfony/Bridge/Doctrine/CacheWarmer/ProxyCacheWarmer.php:56 PhanUndeclaredMethod Call to undeclared method \Doctrine\Common\Persistence\ObjectManager::getConfiguration
src/Symfony/Bridge/Doctrine/CacheWarmer/ProxyCacheWarmer.php:65 PhanUndeclaredMethod Call to undeclared method \Doctrine\Common\Persistence\ObjectManager::getConfiguration
src/Symfony/Bridge/Doctrine/CacheWarmer/ProxyCacheWarmer.php:71 PhanUndeclaredMethod Call to undeclared method \Doctrine\Common\Persistence\ObjectManager::getProxyFactory
src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php:142 PhanTypeComparisonToArray null to array comparison
src/Symfony/Bridge/Doctrine/DependencyInjection/Security/UserProvider/EntityFactory.php:53 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bridge/Doctrine/Form/ChoiceList/DoctrineChoiceLoader.php:128 PhanTypeMismatchArgument Argument 1 (object) is string but \Symfony\Bridge\Doctrine\Form\ChoiceList\IdReader::getIdValue() takes object defined at src/Symfony/Bridge/Doctrine/Form/ChoiceList/IdReader.php:110
src/Symfony/Bridge/Doctrine/Form/ChoiceList/IdReader.php:110 PhanTypeMissingReturn Method \Symfony\Bridge\Doctrine\Form\ChoiceList\IdReader::getIdValue is declared to return mixed but has no return value
src/Symfony/Bridge/Doctrine/Form/ChoiceList/ORMQueryBuilderLoader.php:91 PhanTypeMismatchArgument Argument 3 (type) is int but \Doctrine\ORM\Query::setParameter() takes null|string defined at vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:373
src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php:100 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php:103 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php:114 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php:117 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php:135 PhanTypeMismatchArgument Argument 1 (value) is null but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php:148 PhanTypeMismatchArgument Argument 1 (value) is null but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Bridge/Doctrine/HttpFoundation/DbalSessionHandler.php:203 PhanUndeclaredMethod Call to undeclared method \Throwable::getSQLState
src/Symfony/Bridge/Doctrine/HttpFoundation/DbalSessionHandler.php:204 PhanTypeMismatchArgumentInternal Argument 1 (haystack) is int but \strpos() takes string
src/Symfony/Bridge/Doctrine/Logger/DbalLogger.php:53 PhanTypeMismatchArgument Argument 1 (params) is ?array but \Symfony\Bridge\Doctrine\Logger\DbalLogger::normalizeParams() takes array defined at src/Symfony/Bridge/Doctrine/Logger/DbalLogger.php:78
src/Symfony/Bridge/Doctrine/ManagerRegistry.php:50 PhanTypeMismatchArgument Argument 2 (service) is null but \Symfony\Component\DependencyInjection\ContainerInterface::set() takes object defined at src/Symfony/Component/DependencyInjection/ContainerInterface.php:37
src/Symfony/Bridge/Doctrine/ManagerRegistry.php:56 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\DependencyInjection\ContainerAwareTrait->aliases
src/Symfony/Bridge/Doctrine/ManagerRegistry.php:57 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\DependencyInjection\ContainerAwareTrait->aliases
src/Symfony/Bridge/Doctrine/ManagerRegistry.php:59 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\DependencyInjection\ContainerAwareTrait->methodMap
src/Symfony/Bridge/Doctrine/ManagerRegistry.php:59 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\DependencyInjection\ContainerAwareTrait->underscoreMap
src/Symfony/Bridge/Doctrine/PropertyInfo/DoctrineExtractor.php:110 PhanUndeclaredMethod Call to undeclared method \Doctrine\Common\Persistence\Mapping\ClassMetadata::isNullable
src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php:57 PhanUndeclaredMethod Call to undeclared method \Doctrine\Common\Persistence\ObjectRepository::loadUserByUsername
src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php:79 PhanTypeMismatchArgument Argument 1 (user) is string but \Symfony\Component\Security\Core\User\UserProviderInterface::refreshUser() takes \Symfony\Component\Security\Core\User\UserInterface defined at src/Symfony/Component/Security/Core/User/UserProviderInterface.php:64
src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php:85 PhanTypeMismatchArgument Argument 1 (object) is string but \Doctrine\Common\Persistence\Mapping\ClassMetadata::getIdentifierValues() takes object defined at vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php:173
src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php:91 PhanUndeclaredProperty Reference to undeclared property \Doctrine\Common\Persistence\Mapping\ClassMetadata->reflFields
src/Symfony/Bridge/Monolog/Handler/SwiftMailerHandler.php:32 PhanUndeclaredTypeParameter Parameter of undeclared type \Swift_Transport
src/Symfony/Bridge/Monolog/Handler/SwiftMailerHandler.php:75 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \Swift_Transport_SpoolTransport
src/Symfony/Bridge/Monolog/Handler/SwiftMailerHandler.php:79 PhanUndeclaredClassMethod Call to method getSpool from undeclared class \Swift_Transport_SpoolTransport
src/Symfony/Bridge/Monolog/Handler/SwiftMailerHandler.php:80 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \Swift_MemorySpool
src/Symfony/Bridge/Monolog/Handler/SwiftMailerHandler.php:88 PhanUndeclaredClassMethod Call to method flushQueue from undeclared class \Swift_MemorySpool
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:153 PhanTypeArraySuspicious Suspicious array access to int
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:155 PhanTypeArraySuspicious Suspicious array access to int
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:159 PhanTypeArraySuspicious Suspicious array access to int
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:168 PhanTypeComparisonFromArray array to null|string comparison
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:195 PhanParamTooMany Call with 2 arg(s) to \closure_87a1d49c6b9f() which only takes 1 arg(s) defined at src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:192
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:195 PhanParamTooMany Call with 2 arg(s) to \closure_8c618f186586() which only takes 1 arg(s) defined at src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:181
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:210 PhanParamTooMany Call with 2 arg(s) to \closure_87a1d49c6b9f() which only takes 1 arg(s) defined at src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:192
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:210 PhanParamTooMany Call with 2 arg(s) to \closure_8c618f186586() which only takes 1 arg(s) defined at src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:181
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:215 PhanTypeMismatchArgumentInternal Argument 1 (array_arg) is int but \uasort() takes array
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:217 PhanTypeMismatchForeach int passed to foreach instead of array
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:245 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_BUILD
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:245 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_MAJOR
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php:245 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_MINOR
src/Symfony/Bridge/PhpUnit/Legacy/Command.php:19 PhanUndeclaredExtendedClass Class extends undeclared class \PHPUnit_TextUI_Command
src/Symfony/Bridge/PhpUnit/Legacy/Command.php:26 PhanParamTooMany Call with 1 arg(s) to \Symfony\Bridge\PhpUnit\Legacy\TestRunner::__construct() which only takes 0 arg(s) defined at src/Symfony/Bridge/PhpUnit/Legacy/Command.php:26
src/Symfony/Bridge/PhpUnit/Legacy/Command.php:26 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bridge\PhpUnit\Legacy\Command->arguments
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:21 PhanUndeclaredExtendedClass Class extends undeclared class \PHPUnit_Framework_BaseTestListener
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:35 PhanUndeclaredTypeParameter Parameter of undeclared type \PHPUnit_Framework_TestSuite
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:40 PhanUndeclaredTypeParameter Parameter of undeclared type \PHPUnit_Framework_Test
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:45 PhanUndeclaredTypeParameter Parameter of undeclared type \PHPUnit_Framework_Test
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:50 PhanUndeclaredTypeParameter Parameter of undeclared type \PHPUnit_Framework_Test
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:50 PhanUndeclaredTypeParameter Parameter of undeclared type \PHPUnit_Framework_Warning
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListener.php:55 PhanUndeclaredTypeParameter Parameter of undeclared type \PHPUnit_Framework_Test
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:94 PhanTypeMismatchArgumentInternal Argument 1 (file) is bool but \file_put_contents() takes string
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:122 PhanTypeMismatchProperty Assigning string|string[] to property but \Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerTrait::skippedFile is bool
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:125 PhanTypeMismatchArgumentInternal Argument 1 (filename) is bool but \file_exists() takes string
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:137 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestSuite
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:155 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:168 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:170 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:172 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:182 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:183 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:184 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:194 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:204 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:207 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:214 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:224 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:225 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:242 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:245 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:252 PhanUnanalyzable Expression is unanalyzable or feature is unimplemented. Please create an issue at https://github.com/etsy/phan/issues/new.
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:252 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getStatus
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:253 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:261 PhanUnanalyzable Expression is unanalyzable or feature is unimplemented. Please create an issue at https://github.com/etsy/phan/issues/new.
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:261 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getStatus
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:262 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::addToAssertionCount
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:267 PhanUnanalyzable Expression is unanalyzable or feature is unimplemented. Please create an issue at https://github.com/etsy/phan/issues/new.
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:267 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getStatus
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:270 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::assertStringMatchesFormat
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:272 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:273 PhanUndeclaredClassCatch Catching undeclared class \PHPUnit_Framework_AssertionFailedError
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:274 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:281 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:290 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:290 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:291 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:298 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \PHPUnit_Framework_TestCase
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:298 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getName
src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php:299 PhanUndeclaredMethod Call to undeclared method \PHPUnit\Framework\Test::getTestResultObject
src/Symfony/Bridge/PhpUnit/Legacy/TestRunner.php:19 PhanUndeclaredExtendedClass Class extends undeclared class \PHPUnit_TextUI_TestRunner
src/Symfony/Bridge/PhpUnit/Legacy/TestRunner.php:28 PhanUndeclaredClass Reference to undeclared class \PHPUnit_TextUI_TestRunner
src/Symfony/Bridge/Twig/AppVariable.php:75 PhanTypeMissingReturn Method \Symfony\Bridge\Twig\AppVariable::getUser is declared to return mixed but has no return value
src/Symfony/Bridge/Twig/Command/DebugCommand.php:61 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bridge/Twig/Command/DebugCommand.php:151 PhanTypeMismatchArgumentInternal Argument 1 (function_name) is null but \function_exists() takes string
src/Symfony/Bridge/Twig/Command/DebugCommand.php:152 PhanTypeMismatchArgumentInternal Argument 1 (name) is null but \ReflectionFunction::__construct() takes \Closure|string
src/Symfony/Bridge/Twig/Command/DebugCommand.php:194 PhanTypeComparisonFromArray array to null comparison
src/Symfony/Bridge/Twig/Command/LintCommand.php:213 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Output\OutputInterface::text
src/Symfony/Bridge/Twig/Command/LintCommand.php:215 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Output\OutputInterface::text
src/Symfony/Bridge/Twig/Command/LintCommand.php:219 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Output\OutputInterface::text
src/Symfony/Bridge/Twig/Command/LintCommand.php:226 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Output\OutputInterface::text
src/Symfony/Bridge/Twig/DataCollector/TwigDataCollector.php:108 PhanTypeComparisonToArray null to array comparison
src/Symfony/Bridge/Twig/Extension/CodeExtension.php:204 PhanUndeclaredClassMethod Call to method format from undeclared class \false
src/Symfony/Bridge/Twig/Extension/CodeExtension.php:207 PhanTypeMismatchReturn Returning type bool but getFileLink() is declared to return string
src/Symfony/Bridge/Twig/Extension/FormExtension.php:49 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:50 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:51 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:52 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:113 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:114 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:115 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/FormExtension.php:116 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bridge\Twig\Extension\FormExtension::renderer defined at src/Symfony/Bridge/Twig/Extension/FormExtension.php:30
src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php:64 PhanTypeMismatchReturn Returning type \Symfony\Component\Workflow\Transition[] but getEnabledTransitions() is declared to return \Symfony\Bridge\Twig\Extension\Transition[]
src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php:90 PhanTypeMismatchDefault Default value for string $placesNameOnly can't be bool
src/Symfony/Bridge/Twig/Extension/YamlExtension.php:55 PhanTypeMismatchArgument Argument 4 (flags) is bool but \Symfony\Component\Yaml\Dumper::dump() takes int defined at src/Symfony/Component/Yaml/Dumper.php:62
src/Symfony/Bridge/Twig/Node/DumpNode.php:56 PhanUndeclaredVariable Variable $values is undeclared
src/Symfony/Bridge/Twig/Node/TransNode.php:115 PhanTypeMismatchArgument Argument 1 (value) is \Countable|\Traversable|\Twig_Node|\iteratoraggregate|string but \Twig_Node_Expression_Array::addElement() takes \Twig_Node_Expression defined at vendor/twig/twig/lib/Twig/Node/Expression/Array.php:54
src/Symfony/Bridge/Twig/NodeVisitor/TranslationDefaultDomainNodeVisitor.php:68 PhanTypeMismatchArgument Argument 1 (name) is int but \Twig_Node::hasNode() takes string defined at vendor/twig/twig/lib/Twig/Node.php:133
src/Symfony/Bridge/Twig/NodeVisitor/TranslationDefaultDomainNodeVisitor.php:72 PhanTypeMismatchArgument Argument 1 (name) is int but \Twig_Node::hasNode() takes string defined at vendor/twig/twig/lib/Twig/Node.php:133
src/Symfony/Bridge/Twig/NodeVisitor/TranslationDefaultDomainNodeVisitor.php:73 PhanTypeMismatchArgument Argument 1 (name) is int but \Twig_Node::hasNode() takes string defined at vendor/twig/twig/lib/Twig/Node.php:133
src/Symfony/Bridge/Twig/NodeVisitor/TranslationDefaultDomainNodeVisitor.php:129 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Bridge/Twig/NodeVisitor/TranslationNodeVisitor.php:111 PhanTypeMismatchArgument Argument 1 (name) is int but \Twig_Node::hasNode() takes string defined at vendor/twig/twig/lib/Twig/Node.php:133
src/Symfony/Bridge/Twig/TokenParser/StopwatchTokenParser.php:53 PhanTypeMismatchArgument Argument 1 (type) is string but \Twig_Token::test() takes array|int defined at vendor/twig/twig/lib/Twig/Token.php:68
src/Symfony/Bridge/Twig/Translation/TwigExtractor.php:70 PhanUndeclaredMethod Call to undeclared method \Twig_Error::setTemplateName
src/Symfony/Bridge/Twig/Translation/TwigExtractor.php:89 PhanUndeclaredMethod Call to undeclared method \Twig_ExtensionInterface::getTranslationNodeVisitor
src/Symfony/Bridge/Twig/Translation/TwigExtractor.php:120 PhanTypeMismatchReturn Returning type \Countable|\Symfony\Component\Finder\Finder|\iteratoraggregate but extractFromDirectory() is declared to return array
src/Symfony/Bundle/FrameworkBundle/CacheWarmer/RouterCacheWarmer.php:45 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Routing\RouterInterface::warmUp
src/Symfony/Bundle/FrameworkBundle/CacheWarmer/SerializerCacheWarmer.php:116 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\Mapping\Loader\LoaderChain::getDelegatedLoaders
src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TranslationsCacheWarmer.php:38 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\TranslatorInterface::warmUp
src/Symfony/Bundle/FrameworkBundle/CacheWarmer/ValidatorCacheWarmer.php:67 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\ValidatorBuilderInterface::getLoaders
src/Symfony/Bundle/FrameworkBundle/CacheWarmer/ValidatorCacheWarmer.php:120 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\Loader\LoaderChain::getDelegatedLoaders
src/Symfony/Bundle/FrameworkBundle/Client.php:70 PhanTypeMismatchReturn Returning type bool but getProfile() is declared to return \Symfony\Component\HttpKernel\Profiler\Profile
src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php:41 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php:127 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Dumper\XmlReferenceDumper::dumpAtPath
src/Symfony/Bundle/FrameworkBundle/Command/ContainerAwareCommand.php:43 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Application::getKernel
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:46 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:47 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:48 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:49 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:50 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:51 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:52 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:53 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php:179 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Application::getKernel
src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php:38 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php:39 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php:57 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php:58 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php:59 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php:55 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php:56 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php:57 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationDebugCommand.php:49 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationDebugCommand.php:50 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationDebugCommand.php:51 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationDebugCommand.php:52 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:41 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:42 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:43 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:44 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:45 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:46 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:47 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php:48 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Command/XliffLintCommand.php:43 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Application::getKernel
src/Symfony/Bundle/FrameworkBundle/Command/XliffLintCommand.php:78 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\Translation\Command\XliffLintCommand::execute defined at src/Symfony/Component/Translation/Command/XliffLintCommand.php:74
src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php:42 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Application::getKernel
src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php:77 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\Yaml\Command\LintCommand::execute defined at src/Symfony/Component/Yaml/Command/LintCommand.php:76
src/Symfony/Bundle/FrameworkBundle/Console/Application.php:45 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/JsonDescriptor.php:93 PhanTypeMismatchArgument Argument 1 (data) is string but \Symfony\Bundle\FrameworkBundle\Console\Descriptor\JsonDescriptor::writeData() takes array defined at src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/JsonDescriptor.php:182
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/JsonDescriptor.php:227 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/JsonDescriptor.php:371 PhanTypeMismatchArgumentInternal Argument 1 (object) is callable but \method_exists() takes object|string
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/JsonDescriptor.php:373 PhanTypeMismatchArgumentInternal Argument 1 (object) is callable but \get_class() takes object
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/MarkdownDescriptor.php:188 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/MarkdownDescriptor.php:351 PhanTypeMismatchArgumentInternal Argument 1 (object) is null but \method_exists() takes object|string
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/MarkdownDescriptor.php:353 PhanTypeMismatchArgumentInternal Argument 1 (object) is null but \get_class() takes object
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php:300 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php:472 PhanTypeMismatchArgumentInternal Argument 1 (object) is callable but \method_exists() takes object|string
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php:473 PhanTypeMismatchArgumentInternal Argument 1 (object) is callable but \get_class() takes object
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/XmlDescriptor.php:541 PhanTypeMismatchArgumentInternal Argument 2 (value) is int|null but \DOMElement::setAttribute() takes string
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/XmlDescriptor.php:601 PhanTypeMismatchArgumentInternal Argument 1 (object) is callable but \method_exists() takes object|string
src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/XmlDescriptor.php:603 PhanTypeMismatchArgumentInternal Argument 1 (object) is callable but \get_class() takes object
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerResolver.php:39 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\HttpKernel\Controller\ContainerControllerResolver::__construct() takes \Psr\Container\ContainerInterface defined at src/Symfony/Component/HttpKernel/Controller/ContainerControllerResolver.php:27
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:52 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:66 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:71 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:113 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:114 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:151 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:155 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:170 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:174 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:208 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:209 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:212 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:216 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:230 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:231 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:234 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:242 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:258 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:259 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:264 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:265 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:328 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:341 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:353 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:357 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:371 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:375 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:397 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php:401 PhanUndeclaredProperty Reference to undeclared property \Symfony\Bundle\FrameworkBundle\Controller\ControllerTrait->container
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/AddAnnotationsCachedReaderPass.php:38 PhanTypeMismatchArgument Argument 2 (service) is null but \Symfony\Component\DependencyInjection\ContainerBuilder::set() takes object defined at src/Symfony/Component/DependencyInjection/ContainerBuilder.php:498
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/CachePoolPass.php:51 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Definition::getParent
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/CompilerDebugDumpPass.php:32 PhanParamTooMany Call with 3 arg(s) to \Symfony\Component\Filesystem\Filesystem::dumpFile() which only takes 2 arg(s) defined at src/Symfony/Component/Filesystem/Filesystem.php:654
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ContainerBuilderDebugDumpPass.php:34 PhanParamTooMany Call with 3 arg(s) to \Symfony\Component\Filesystem\Filesystem::dumpFile() which only takes 2 arg(s) defined at src/Symfony/Component/Filesystem/Filesystem.php:654
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php:218 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::fixXmlConfig
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:229 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:610 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:661 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:672 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:746 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:786 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:1127 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:1336 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php:1384 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php:42 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::isDebug
src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php:56 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::boot
src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php:57 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::getContainer
src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php:58 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::getContainer
src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php:80 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::getCacheDir
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/attributes.html.php:1 PhanUndeclaredVariable Variable $attr is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/attributes.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/attributes.html.php:5 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/attributes.html.php:7 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_attributes.html.php:1 PhanUndeclaredVariable Variable $disabled is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_attributes.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_attributes.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_label.html.php:0 PhanEmptyFile Empty file src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_label.html.php
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_row.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_widget.html.php:2 PhanUndeclaredVariable Variable $id is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_widget.html.php:2 PhanUndeclaredVariable Variable $label_format is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_widget.html.php:2 PhanUndeclaredVariable Variable $name is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_widget.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/button_widget.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/checkbox_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/checkbox_widget.html.php:3 PhanUndeclaredVariable Variable $value is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/checkbox_widget.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/checkbox_widget.html.php:4 PhanUndeclaredVariable Variable $checked is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_attributes.html.php:1 PhanUndeclaredVariable Variable $disabled is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_attributes.html.php:2 PhanUndeclaredVariable Variable $choice_attr is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_attributes.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_attributes.html.php:6 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_options.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget.html.php:1 PhanUndeclaredVariable Variable $expanded is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:2 PhanUndeclaredVariable Variable $attr is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:2 PhanUndeclaredVariable Variable $multiple is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:2 PhanUndeclaredVariable Variable $placeholder is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:2 PhanUndeclaredVariable Variable $placeholder_in_choices is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:2 PhanUndeclaredVariable Variable $required is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:5 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:8 PhanUndeclaredVariable Variable $multiple is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:10 PhanUndeclaredVariable Variable $placeholder is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:10 PhanUndeclaredVariable Variable $value is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:10 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:11 PhanUndeclaredVariable Variable $preferred_choices is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:12 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:13 PhanUndeclaredVariable Variable $choices is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:13 PhanUndeclaredVariable Variable $separator is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:14 PhanUndeclaredVariable Variable $separator is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_collapsed.html.php:17 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_expanded.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_expanded.html.php:2 PhanUndeclaredVariable Variable $form is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_expanded.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_expanded.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_options.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_options.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_options.html.php:5 PhanUndeclaredVariable Variable $choices is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_options.html.php:7 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/choice_widget_options.html.php:11 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/collection_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/collection_widget.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/container_attributes.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:1 PhanUndeclaredVariable Variable $widget is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:6 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:7 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:8 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/date_widget.html.php:9 PhanUndeclaredVariable Variable $date_pattern is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/datetime_widget.html.php:1 PhanUndeclaredVariable Variable $widget is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/datetime_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/datetime_widget.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/datetime_widget.html.php:5 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/email_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_enctype.html.php:1 PhanUndeclaredVariable Variable $form is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_end.html.php:1 PhanUndeclaredVariable Variable $render_rest is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_end.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_errors.html.php:1 PhanUndeclaredVariable Variable $errors is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_errors.html.php:3 PhanUndeclaredVariable Variable $errors is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:1 PhanUndeclaredVariable Variable $label is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:2 PhanUndeclaredVariable Variable $required is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:3 PhanUndeclaredVariable Variable $id is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:5 PhanUndeclaredVariable Variable $id is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:5 PhanUndeclaredVariable Variable $label_format is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:5 PhanUndeclaredVariable Variable $name is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:6 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_label.html.php:7 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_rest.html.php:1 PhanUndeclaredVariable Variable $form is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_rest.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_row.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_row.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_row.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_rows.html.php:1 PhanUndeclaredVariable Variable $form is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_rows.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_start.html.php:1 PhanUndeclaredVariable Variable $method is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_start.html.php:3 PhanUndeclaredVariable Variable $action is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_start.html.php:3 PhanUndeclaredVariable Variable $attr is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_start.html.php:3 PhanUndeclaredVariable Variable $multipart is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_start.html.php:3 PhanUndeclaredVariable Variable $name is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_start.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget.html.php:1 PhanUndeclaredVariable Variable $compound is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_compound.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_compound.html.php:2 PhanUndeclaredVariable Variable $errors is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_compound.html.php:2 PhanUndeclaredVariable Variable $form is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_compound.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_compound.html.php:5 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_compound.html.php:6 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_simple.html.php:1 PhanUndeclaredVariable Variable $value is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/form_widget_simple.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/hidden_row.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/hidden_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/integer_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php:1 PhanUndeclaredVariable Variable $money_pattern is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/number_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/password_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/percent_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/radio_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/radio_widget.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/radio_widget.html.php:4 PhanUndeclaredVariable Variable $checked is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/range_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/repeated_row.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/reset_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/search_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/submit_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/textarea_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:1 PhanUndeclaredVariable Variable $widget is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:5 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:9 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:11 PhanUndeclaredVariable Variable $with_minutes is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:13 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:16 PhanUndeclaredVariable Variable $with_seconds is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/time_widget.html.php:18 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/url_widget.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/widget_attributes.html.php:1 PhanUndeclaredVariable Variable $disabled is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/widget_attributes.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/widget_attributes.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/widget_container_attributes.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/widget_container_attributes.html.php:2 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/button_row.html.php:4 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_row.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_row.html.php:6 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_row.html.php:7 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php:1 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php:2 PhanUndeclaredVariable Variable $errors is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php:2 PhanUndeclaredVariable Variable $form is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php:5 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php:9 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php:10 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/hidden_row.html.php:3 PhanUndeclaredVariable Variable $view is undeclared
src/Symfony/Bundle/FrameworkBundle/Routing/DelegatingLoader.php:67 PhanTypeMismatchArgument Argument 2 (sourceResource) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes string defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Bundle/FrameworkBundle/Routing/DelegatingLoader.php:67 PhanTypeMismatchArgument Argument 3 (code) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes int defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Bundle/FrameworkBundle/Routing/DelegatingLoader.php:67 PhanTypeMismatchArgument Argument 4 (previous) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes \Exception defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Bundle/FrameworkBundle/Templating/Helper/CodeHelper.php:190 PhanUndeclaredClassMethod Call to method format from undeclared class \false
src/Symfony/Bundle/FrameworkBundle/Templating/Helper/CodeHelper.php:193 PhanTypeMismatchReturn Returning type bool but getFileLink() is declared to return string
src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.php:47 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.php:52 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.php:57 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/FrameworkBundle/Translation/PhpExtractor.php:258 PhanTypeMismatchReturn Returning type \Countable|\Symfony\Component\Finder\Finder|\iteratoraggregate but extractFromDirectory() is declared to return array
src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php:68 PhanUndeclaredMethod Call to undeclared method \Psr\Container\ContainerInterface::getParameter
src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php:128 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface::getDecisionLog
src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php:129 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface::getStrategy
src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php:131 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface::getVoters
src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php:143 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\FirewallMapInterface::getFirewallConfig
src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php:165 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::data is \Symfony\Component\VarDumper\Caster\ClassStub[][]|array|null[]|string[]|string[][]
src/Symfony/Bundle/SecurityBundle/DependencyInjection/MainConfiguration.php:137 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::performNoDeepMerging
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php:74 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/FormLoginFactory.php:50 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/FormLoginLdapFactory.php:50 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/GuardAuthenticationFactory.php:39 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::fixXmlConfig
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php:60 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/HttpBasicLdapFactory.php:60 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/HttpDigestFactory.php:61 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/RememberMeFactory.php:124 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::fixXmlConfig
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/RemoteUserFactory.php:57 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php:40 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php:36 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/X509Factory.php:58 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/InMemoryFactory.php:50 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::fixXmlConfig
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/UserProvider/LdapFactory.php:49 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::children
src/Symfony/Bundle/SecurityBundle/DependencyInjection/SecurityExtension.php:115 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\SecurityBundle\DependencyInjection\SecurityExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/SecurityBundle/DependencyInjection/SecurityExtension.php:205 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\SecurityBundle\DependencyInjection\SecurityExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/SecurityBundle/EventListener/FirewallListener.php:44 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\FirewallMapInterface::getFirewallConfig
src/Symfony/Bundle/SecurityBundle/Security/FirewallMap.php:52 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bundle\SecurityBundle\Security\FirewallMap::map defined at src/Symfony/Bundle/SecurityBundle/Security/FirewallMap.php:35
src/Symfony/Bundle/SecurityBundle/Security/FirewallMap.php:53 PhanDeprecatedProperty Reference to deprecated property \Symfony\Bundle\SecurityBundle\Security\FirewallMap::map defined at src/Symfony/Bundle/SecurityBundle/Security/FirewallMap.php:35
src/Symfony/Bundle/SecurityBundle/Security/FirewallMap.php:152 PhanTypeMismatchProperty Assigning array to property but \Symfony\Bundle\SecurityBundle\Security\_FirewallMap::contexts is \SplObjectStorage
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:44 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:45 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:46 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:47 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:48 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:49 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:50 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:51 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:52 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:53 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:54 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:55 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addSecurityListenerFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:57 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addUserProviderFactory
src/Symfony/Bundle/SecurityBundle/SecurityBundle.php:58 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Extension\ExtensionInterface::addUserProviderFactory
src/Symfony/Bundle/SecurityBundle/Templating/Helper/LogoutUrlHelper.php:46 PhanParamTooMany Call with 2 arg(s) to \Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::getLogoutPath() which only takes 1 arg(s) defined at src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php:76
src/Symfony/Bundle/SecurityBundle/Templating/Helper/LogoutUrlHelper.php:58 PhanParamTooMany Call with 2 arg(s) to \Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::getLogoutUrl() which only takes 1 arg(s) defined at src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php:88
src/Symfony/Bundle/TwigBundle/Command/LintCommand.php:60 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Application::getKernel
src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php:58 PhanTypeMismatchArgument Argument 1 (startObLevel) is array|string but \Symfony\Bundle\TwigBundle\Controller\ExceptionController::getAndCleanOutputBuffering() takes int defined at src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php:80
src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php:40 PhanUndeclaredMethod Call to undeclared method \Twig_ExtensionInterface::setDateFormat
src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php:43 PhanUndeclaredMethod Call to undeclared method \Twig_ExtensionInterface::setTimezone
src/Symfony/Bundle/TwigBundle/DependencyInjection/Configurator/EnvironmentConfigurator.php:46 PhanUndeclaredMethod Call to undeclared method \Twig_ExtensionInterface::setNumberFormat
src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php:147 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\TwigBundle\DependencyInjection\TwigExtension::addClassesToCompile() defined at src/Symfony/Component/HttpKernel/DependencyInjection/Extension.php:53
src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php:96 PhanTypeMismatchReturn Returning type bool but findTemplate() is declared to return string
src/Symfony/Bundle/TwigBundle/TemplateIterator.php:68 PhanTypeMismatchProperty Assigning \ArrayIterator to property but \Symfony\Bundle\TwigBundle\TemplateIterator::templates is array
src/Symfony/Bundle/TwigBundle/TwigEngine.php:55 PhanUndeclaredMethod Call to undeclared method \Twig_Error::getTemplateName
src/Symfony/Bundle/TwigBundle/TwigEngine.php:57 PhanUndeclaredMethod Call to undeclared method \Twig_Error::setTemplateName
src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php:54 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::getException
src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php:94 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::getException
src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php:120 PhanUndeclaredMethod Call to undeclared method \Twig_LoaderInterface::getSource
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:105 PhanTypeMismatchArgument Argument 1 (ip) is null but \Symfony\Component\HttpKernel\Profiler\Profiler::find() takes string defined at src/Symfony/Component/HttpKernel/Profiler/Profiler.php:150
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:105 PhanTypeMismatchArgument Argument 2 (url) is null but \Symfony\Component\HttpKernel\Profiler\Profiler::find() takes string defined at src/Symfony/Component/HttpKernel/Profiler/Profiler.php:150
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:105 PhanTypeMismatchArgument Argument 3 (limit) is int but \Symfony\Component\HttpKernel\Profiler\Profiler::find() takes string defined at src/Symfony/Component/HttpKernel/Profiler/Profiler.php:150
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:105 PhanTypeMismatchArgument Argument 4 (method) is null but \Symfony\Component\HttpKernel\Profiler\Profiler::find() takes string defined at src/Symfony/Component/HttpKernel/Profiler/Profiler.php:150
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:105 PhanTypeMismatchArgument Argument 5 (start) is null but \Symfony\Component\HttpKernel\Profiler\Profiler::find() takes string defined at src/Symfony/Component/HttpKernel/Profiler/Profiler.php:150
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:105 PhanTypeMismatchArgument Argument 6 (end) is null but \Symfony\Component\HttpKernel\Profiler\Profiler::find() takes string defined at src/Symfony/Component/HttpKernel/Profiler/Profiler.php:150
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:176 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php:178 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php:73 PhanTypeMismatchArgument Argument 1 (request) is \Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface but \Symfony\Bundle\WebProfilerBundle\Controller\RouterController::getTraces() takes \Symfony\Component\HttpKernel\DataCollector\RequestDataCollector defined at src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php:85
src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php:91 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php:93 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php:135 PhanUndeclaredMethod Call to undeclared method \Twig_LoaderInterface::getSource
src/Symfony/Bundle/WebProfilerBundle/Twig/WebProfilerExtension.php:69 PhanDeprecatedFunction Call to deprecated function \Symfony\Bundle\WebProfilerBundle\Twig\WebProfilerExtension::dumpValue() defined at src/Symfony/Bundle/WebProfilerBundle/Twig/WebProfilerExtension.php:112
src/Symfony/Bundle/WebProfilerBundle/Twig/WebProfilerExtension.php:117 PhanDeprecatedClass Call to deprecated class \Symfony\Component\HttpKernel\DataCollector\Util\ValueExporter defined at src/Symfony/Component/HttpKernel/DataCollector/Util/ValueExporter.php:21
src/Symfony/Bundle/WebServerBundle/Command/ServerStartCommand.php:52 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/WebServerBundle/Command/ServerStatusCommand.php:37 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/WebServerBundle/Command/ServerStatusCommand.php:38 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/WebServerBundle/Command/ServerStopCommand.php:36 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Bundle/WebServerBundle/WebServer.php:133 PhanTypeMismatchArgumentInternal Argument 2 (port) is string but \fsockopen() takes int
src/Symfony/Bundle/WebServerBundle/WebServerConfig.php:46 PhanTypeMismatchProperty Assigning string to property but \Symfony\Bundle\WebServerBundle\WebServerConfig::port is int
src/Symfony/Component/BrowserKit/Client.php:327 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\BrowserKit\Client::redirect is array|string
src/Symfony/Component/Cache/Adapter/AbstractAdapter.php:43 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/Cache/Adapter/AbstractAdapter.php:44 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/Cache/Adapter/AbstractAdapter.php:45 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/AbstractAdapter.php:46 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$defaultLifetime
src/Symfony/Component/Cache/Adapter/AbstractAdapter.php:211 PhanUndeclaredVariable Variable $expiredIds is undeclared
src/Symfony/Component/Cache/Adapter/AbstractAdapter.php:212 PhanUndeclaredVariable Variable $expiredIds is undeclared
src/Symfony/Component/Cache/Adapter/ArrayAdapter.php:38 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/Cache/Adapter/ArrayAdapter.php:39 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/Cache/Adapter/ArrayAdapter.php:40 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/ArrayAdapter.php:41 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$defaultLifetime
src/Symfony/Component/Cache/Adapter/MemcachedAdapter.php:22 PhanUndeclaredTypeParameter Parameter of undeclared type \Memcached
src/Symfony/Component/Cache/Adapter/NullAdapter.php:29 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/Cache/Adapter/NullAdapter.php:30 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/PdoAdapter.php:48 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Cache\Adapter\Connection
src/Symfony/Component/Cache/Adapter/PhpArrayAdapter.php:44 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/Cache/Adapter/PhpArrayAdapter.php:45 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/Cache/Adapter/PhpArrayAdapter.php:46 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/ProxyAdapter.php:38 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/Cache/Adapter/ProxyAdapter.php:39 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/Cache/Adapter/ProxyAdapter.php:40 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/ProxyAdapter.php:41 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$defaultLifetime
src/Symfony/Component/Cache/Adapter/ProxyAdapter.php:42 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$innerItem
src/Symfony/Component/Cache/Adapter/ProxyAdapter.php:43 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$poolHash
src/Symfony/Component/Cache/Adapter/RedisAdapter.php:25 PhanUndeclaredTypeParameter Parameter of undeclared type \Redis
src/Symfony/Component/Cache/Adapter/RedisAdapter.php:25 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisArray
src/Symfony/Component/Cache/Adapter/RedisAdapter.php:25 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisCluster
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:40 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:41 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:42 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$defaultLifetime
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:43 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$expiry
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:44 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$innerItem
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:45 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$poolHash
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:54 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:59 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$prevTags
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:63 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php:64 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/Cache/Adapter/TraceableAdapter.php:118 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\Cache\Adapter\TraceableAdapterEvent::result is bool
src/Symfony/Component/Cache/Adapter/TraceableAdapter.php:125 PhanTypeArraySuspicious Suspicious array access to bool
src/Symfony/Component/Cache/CacheItem.php:91 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/Cache/DataCollector/CacheDataCollector.php:58 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Component\Cache\DataCollector\CacheDataCollector::data is array
src/Symfony/Component/Cache/Simple/AbstractCache.php:106 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/AbstractCache.php:152 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/Cache/Simple/ArrayCache.php:77 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/ArrayCache.php:104 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/ArrayCache.php:139 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/Cache/Simple/MemcachedCache.php:22 PhanUndeclaredTypeParameter Parameter of undeclared type \Memcached
src/Symfony/Component/Cache/Simple/PdoCache.php:48 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Cache\Simple\Connection
src/Symfony/Component/Cache/Simple/PhpArrayCache.php:156 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/PhpArrayCache.php:205 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/Psr6Cache.php:40 PhanTypeMismatchArgument Argument 1 (key) is null but \Symfony\Component\Cache\CacheItem::validateKey() takes string defined at src/Symfony/Component/Cache/CacheItem.php:153
src/Symfony/Component/Cache/Simple/Psr6Cache.php:62 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:62 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:62 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/Psr6Cache.php:82 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:82 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:82 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/Psr6Cache.php:101 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:101 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:101 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/Psr6Cache.php:129 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:129 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:129 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/Psr6Cache.php:154 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/Psr6Cache.php:159 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/Psr6Cache.php:164 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/Cache/Simple/Psr6Cache.php:174 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:174 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:174 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/Psr6Cache.php:207 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:207 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:207 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/Psr6Cache.php:221 PhanTypeMismatchArgumentInternal Argument 3 (previous) is \Psr\Cache\CacheException but \Symfony\Component\Cache\Exception\InvalidArgumentException::__construct() takes \InvalidArgumentException|\Throwable|null
src/Symfony/Component/Cache/Simple/Psr6Cache.php:221 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getCode
src/Symfony/Component/Cache/Simple/Psr6Cache.php:221 PhanUndeclaredMethod Call to undeclared method \Psr\Cache\CacheException::getMessage
src/Symfony/Component/Cache/Simple/RedisCache.php:23 PhanUndeclaredTypeParameter Parameter of undeclared type \Redis
src/Symfony/Component/Cache/Simple/RedisCache.php:23 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisArray
src/Symfony/Component/Cache/Simple/RedisCache.php:23 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisCluster
src/Symfony/Component/Cache/Traits/AbstractTrait.php:88 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Cache\Traits\AbstractTrait::commit
src/Symfony/Component/Cache/Traits/ApcuTrait.php:37 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\ApcuTrait
src/Symfony/Component/Cache/Traits/ApcuTrait.php:75 PhanUndeclaredConstant Reference to undeclared constant \APC_ITER_KEY
src/Symfony/Component/Cache/Traits/ApcuTrait.php:97 PhanTypeMismatchArgumentInternal Argument 1 (input) is bool but \array_keys() takes array
src/Symfony/Component/Cache/Traits/DoctrineTrait.php:28 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\DoctrineTrait
src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:121 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\FilesystemCommonTrait
src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:122 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\FilesystemCommonTrait
src/Symfony/Component/Cache/Traits/FilesystemTrait.php:48 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\FilesystemTrait
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:38 PhanUndeclaredTypeParameter Parameter of undeclared type \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:43 PhanUndeclaredClassConstant Reference to constant OPT_SERIALIZER from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:43 PhanUndeclaredClassMethod Call to method getOption from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:44 PhanUndeclaredClassConstant Reference to constant SERIALIZER_IGBINARY from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:44 PhanUndeclaredClassConstant Reference to constant SERIALIZER_PHP from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:47 PhanUndeclaredClassConstant Reference to constant OPT_PREFIX_KEY from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:47 PhanUndeclaredClassMethod Call to method getOption from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:47 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Cache\Traits\MemcachedTrait->maxIdLength
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:49 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\MemcachedTrait
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:82 PhanUndeclaredClassMethod Call to method __construct from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:89 PhanUndeclaredClassConstant Reference to constant OPT_BINARY_PROTOCOL from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:89 PhanUndeclaredClassMethod Call to method setOption from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:90 PhanUndeclaredClassConstant Reference to constant OPT_NO_BLOCK from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:90 PhanUndeclaredClassMethod Call to method setOption from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:91 PhanUndeclaredClassConstant Reference to constant OPT_LIBKETAMA_COMPATIBLE from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:92 PhanUndeclaredClassConstant Reference to constant OPT_LIBKETAMA_COMPATIBLE from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:92 PhanUndeclaredClassMethod Call to method setOption from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:106 PhanUndeclaredClassMethod Call to method setOptions from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:147 PhanUndeclaredClassMethod Call to method isPristine from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:149 PhanUndeclaredClassMethod Call to method getServerList from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:165 PhanUndeclaredClassMethod Call to method addServers from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:166 PhanUndeclaredClassMethod Call to method resetServerList from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:169 PhanUndeclaredClassMethod Call to method addServers from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:175 PhanUndeclaredClassMethod Call to method setSaslAuthData from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:189 PhanUndeclaredClassMethod Call to method setMulti from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:197 PhanUndeclaredClassMethod Call to method getMulti from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:205 PhanUndeclaredClassConstant Reference to constant RES_SUCCESS from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:205 PhanUndeclaredClassMethod Call to method get from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:205 PhanUndeclaredClassMethod Call to method getResultCode from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:214 PhanUndeclaredClassMethod Call to method deleteMulti from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:215 PhanUndeclaredClassConstant Reference to constant RES_NOTFOUND from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:215 PhanUndeclaredClassConstant Reference to constant RES_SUCCESS from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:228 PhanUndeclaredClassMethod Call to method flush from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:233 PhanUndeclaredClassMethod Call to method getResultCode from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:235 PhanUndeclaredClassConstant Reference to constant RES_NOTFOUND from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:235 PhanUndeclaredClassConstant Reference to constant RES_SUCCESS from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/MemcachedTrait.php:239 PhanUndeclaredClassMethod Call to method getResultMessage from undeclared class \Memcached
src/Symfony/Component/Cache/Traits/PdoTrait.php:51 PhanTypeMismatchProperty Assigning \Doctrine\DBAL\Connection to property but \Symfony\Component\Cache\Traits\PdoTrait::conn is \PDO
src/Symfony/Component/Cache/Traits/PdoTrait.php:67 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\PdoTrait
src/Symfony/Component/Cache/Traits/PdoTrait.php:161 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\PdoTrait
src/Symfony/Component/Cache/Traits/PdoTrait.php:337 PhanUndeclaredMethod Call to undeclared method \PDO::getDriver
src/Symfony/Component/Cache/Traits/PdoTrait.php:369 PhanUndeclaredMethod Call to undeclared method \PDO::getWrappedConnection
src/Symfony/Component/Cache/Traits/PhpFilesTrait.php:63 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\PhpFilesTrait
src/Symfony/Component/Cache/Traits/PhpFilesTrait.php:92 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\PhpFilesTrait
src/Symfony/Component/Cache/Traits/RedisTrait.php:41 PhanUndeclaredTypeParameter Parameter of undeclared type \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:41 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisArray
src/Symfony/Component/Cache/Traits/RedisTrait.php:41 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisCluster
src/Symfony/Component/Cache/Traits/RedisTrait.php:43 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\RedisTrait
src/Symfony/Component/Cache/Traits/RedisTrait.php:48 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:48 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisArray
src/Symfony/Component/Cache/Traits/RedisTrait.php:48 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisCluster
src/Symfony/Component/Cache/Traits/RedisTrait.php:103 PhanUndeclaredClassConstant Reference to constant class from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:105 PhanUndeclaredClassConstant Reference to constant class from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:115 PhanUndeclaredVariable Variable $auth is undeclared
src/Symfony/Component/Cache/Traits/RedisTrait.php:117 PhanUndeclaredClassConstant Reference to constant OPT_READ_TIMEOUT from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:125 PhanUndeclaredVariable Variable $auth is undeclared
src/Symfony/Component/Cache/Traits/RedisTrait.php:149 PhanTraitParentReference Reference to parent from trait \Symfony\Component\Cache\Traits\RedisTrait
src/Symfony/Component/Cache/Traits/RedisTrait.php:160 PhanUndeclaredClassMethod Call to method exists from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:178 PhanUndeclaredClassMethod Call to method getConnection from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:187 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisArray
src/Symfony/Component/Cache/Traits/RedisTrait.php:189 PhanUndeclaredClassMethod Call to method _hosts from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:190 PhanUndeclaredClassMethod Call to method _instance from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:192 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisCluster
src/Symfony/Component/Cache/Traits/RedisTrait.php:197 PhanUndeclaredClassMethod Call to method flushDb from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:201 PhanUndeclaredClassMethod Call to method info from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:208 PhanUndeclaredClassMethod Call to method eval from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:214 PhanParamTooMany Call with 5 arg(s) to \Predis\Client::scan() which only takes 2 arg(s) defined at vendor/predis/predis/src/ClientInterface.php:177
src/Symfony/Component/Cache/Traits/RedisTrait.php:214 PhanTypeMismatchArgument Argument 2 (options) is string but \Predis\Client::scan() takes ?array defined at vendor/predis/predis/src/ClientInterface.php:177
src/Symfony/Component/Cache/Traits/RedisTrait.php:214 PhanUndeclaredClassMethod Call to method scan from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:220 PhanUndeclaredClassMethod Call to method del from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:234 PhanUndeclaredClassMethod Call to method del from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:283 PhanUndeclaredClassMethod Call to method pipeline from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:289 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisArray
src/Symfony/Component/Cache/Traits/RedisTrait.php:292 PhanUndeclaredClassMethod Call to method _target from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:293 PhanUndeclaredClassMethod Call to method _instance from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:294 PhanUndeclaredClassConstant Reference to constant PIPELINE from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:307 PhanUndeclaredClassConstant Reference to constant PIPELINE from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:307 PhanUndeclaredClassMethod Call to method multi from undeclared class \Redis
src/Symfony/Component/Cache/Traits/RedisTrait.php:312 PhanUndeclaredClassMethod Call to method exec from undeclared class \Redis
src/Symfony/Component/ClassLoader/WinCacheClassLoader.php:128 PhanUndeclaredVariable Variable $success is undeclared
src/Symfony/Component/ClassLoader/XcacheClassLoader.php:128 PhanUndeclaredFunction Call to undeclared function \xcache_isset()
src/Symfony/Component/ClassLoader/XcacheClassLoader.php:129 PhanUndeclaredFunction Call to undeclared function \xcache_get()
src/Symfony/Component/ClassLoader/XcacheClassLoader.php:132 PhanUndeclaredFunction Call to undeclared function \xcache_set()
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:47 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition::trueEquivalent is bool
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:79 PhanTypeMismatchArgument Argument 1 (name) is null but \Symfony\Component\Config\Definition\Builder\NodeBuilder::node() takes string defined at src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php:159
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:165 PhanTypeMismatchProperty Assigning array|int|null|string to property but \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition::addDefaultChildren is bool
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:419 PhanTypeMismatchProperty Assigning \Symfony\Component\Config\Definition\ArrayNode to property but \Symfony\Component\Config\Definition\Builder\NodeDefinition::parent is ?\Symfony\Component\Config\Definition\Builder\NodeParentInterface|\Symfony\Component\Config\Definition\Builder\NodeParentInterface|null
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:440 PhanTypeMismatchArgument Argument 1 (children) is bool but \Symfony\Component\Config\Definition\PrototypedArrayNode::setAddChildrenIfNoneSet() takes array|int|null|string|string[] defined at src/Symfony/Component/Config/Definition/PrototypedArrayNode.php:119
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:441 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Config\Definition\Builder\NodeParentInterface->prototype
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:442 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\Builder\NodeDefinition::addDefaultsIfNotSet
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:446 PhanTypeMismatchProperty Assigning \Symfony\Component\Config\Definition\PrototypedArrayNode to property but \Symfony\Component\Config\Definition\Builder\NodeDefinition::parent is ?\Symfony\Component\Config\Definition\Builder\NodeParentInterface|\Symfony\Component\Config\Definition\Builder\NodeParentInterface|null
src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php:447 PhanTypeMismatchArgument Argument 1 (node) is \Symfony\Component\Config\Definition\NodeInterface but \Symfony\Component\Config\Definition\PrototypedArrayNode::setPrototype() takes \Symfony\Component\Config\Definition\PrototypeNodeInterface defined at src/Symfony/Component/Config/Definition/PrototypedArrayNode.php:156
src/Symfony/Component/Config/Definition/Builder/EnumNodeDefinition.php:52 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php:139 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\NodeInterface::setAttributes
src/Symfony/Component/Config/Definition/Builder/NormalizationBuilder.php:62 PhanTypeMismatchReturn Returning type \Symfony\Component\Config\Definition\Builder\NormalizationBuilder but before() is declared to return \Symfony\Component\Config\Definition\Builder\ExprBuilder
src/Symfony/Component/Config/Definition/Builder/ValidationBuilder.php:46 PhanTypeMismatchReturn Returning type \Symfony\Component\Config\Definition\Builder\ValidationBuilder but rule() is declared to return \Symfony\Component\Config\Definition\Builder\ExprBuilder
src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php:39 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Config\Definition\Dumper\XmlReferenceDumper::reference is string
src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php:56 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\NodeInterface::getParent
src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php:57 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\NodeInterface::getParent
src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php:90 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\PrototypeNodeInterface::getInfo
src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php:91 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\PrototypeNodeInterface::getInfo
src/Symfony/Component/Config/Definition/Dumper/XmlReferenceDumper.php:123 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\PrototypeNodeInterface::getValues
src/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php:67 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper::reference is string
src/Symfony/Component/Config/Definition/Dumper/YamlReferenceDumper.php:83 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\NodeInterface::getExample
src/Symfony/Component/Config/Definition/PrototypedArrayNode.php:101 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\Config\Definition\PrototypedArrayNode::defaultValue is array
src/Symfony/Component/Config/Definition/PrototypedArrayNode.php:138 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Config/Definition/PrototypedArrayNode.php:259 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Definition\PrototypeNodeInterface::getChildren
src/Symfony/Component/Config/Definition/PrototypedArrayNode.php:262 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Config\Definition\PrototypeNodeInterface->normalizationClosures
src/Symfony/Component/Config/Loader/DelegatingLoader.php:42 PhanTypeMismatchArgument Argument 2 (sourceResource) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes string defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Loader/DelegatingLoader.php:42 PhanTypeMismatchArgument Argument 3 (code) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes int defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Loader/DelegatingLoader.php:42 PhanTypeMismatchArgument Argument 4 (previous) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes \Exception defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Loader/FileLoader.php:213 PhanTypeMismatchArgument Argument 3 (code) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes int defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Loader/Loader.php:73 PhanTypeMismatchArgument Argument 2 (sourceResource) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes string defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Loader/Loader.php:73 PhanTypeMismatchArgument Argument 3 (code) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes int defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Loader/Loader.php:73 PhanTypeMismatchArgument Argument 4 (previous) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes \Exception defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Config/Resource/ComposerResource.php:73 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Config/Resource/SelfCheckingResourceChecker.php:34 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Resource\ResourceInterface::isFresh
src/Symfony/Component/Config/ResourceCheckerConfigCache.php:107 PhanTypeMismatchForeach bool passed to foreach instead of array
src/Symfony/Component/Config/ResourceCheckerConfigCache.php:138 PhanParamTooMany Call with 3 arg(s) to \Symfony\Component\Filesystem\Filesystem::dumpFile() which only takes 2 arg(s) defined at src/Symfony/Component/Filesystem/Filesystem.php:654
src/Symfony/Component/Config/ResourceCheckerConfigCache.php:146 PhanParamTooMany Call with 3 arg(s) to \Symfony\Component\Filesystem\Filesystem::dumpFile() which only takes 2 arg(s) defined at src/Symfony/Component/Filesystem/Filesystem.php:654
src/Symfony/Component/Console/Application.php:220 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Application::runningCommand is \Symfony\Component\Console\Command\Command
src/Symfony/Component/Console/Application.php:460 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Command\Command::setCommand
src/Symfony/Component/Console/Application.php:626 PhanTypeMismatchArgument Argument 2 (limit) is int but \Symfony\Component\Console\Application::extractNamespace() takes string defined at src/Symfony/Component/Console/Application.php:996
src/Symfony/Component/Console/Application.php:822 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Helper\HelperInterface::getInputStream
src/Symfony/Component/Console/Application.php:896 PhanDeprecatedClass Call to deprecated class \Symfony\Component\Console\Event\ConsoleExceptionEvent defined at src/Symfony/Component/Console/Event/ConsoleExceptionEvent.php:25
src/Symfony/Component/Console/Application.php:1001 PhanTypeMismatchArgumentInternal Argument 3 (length) is string but \array_slice() takes int|null
src/Symfony/Component/Console/Command/Command.php:91 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Command\Command::helperSet is \Symfony\Component\Console\Helper\HelperSet
src/Symfony/Component/Console/Command/HelpCommand.php:40 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Component/Console/Command/HelpCommand.php:41 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Component/Console/Command/HelpCommand.php:84 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Command\HelpCommand::command is \Symfony\Component\Console\Command\Command
src/Symfony/Component/Console/Command/ListCommand.php:86 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Component/Console/Command/ListCommand.php:87 PhanTypeMismatchArgument Argument 2 (shortcut) is null but \Symfony\Component\Console\Input\InputOption::__construct() takes array|string defined at src/Symfony/Component/Console/Input/InputOption.php:46
src/Symfony/Component/Console/Command/LockableTrait.php:42 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Command\LockableTrait::getName
src/Symfony/Component/Console/Command/LockableTrait.php:45 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Command\LockableTrait::lockHandler is \Symfony\Component\Filesystem\LockHandler
src/Symfony/Component/Console/Command/LockableTrait.php:60 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Command\LockableTrait::lockHandler is \Symfony\Component\Filesystem\LockHandler
src/Symfony/Component/Console/Descriptor/ApplicationDescription.php:76 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Console/Descriptor/ApplicationDescription.php:88 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Console/Descriptor/ApplicationDescription.php:149 PhanTypeMismatchArgument Argument 2 (limit) is int but \Symfony\Component\Console\Application::extractNamespace() takes string defined at src/Symfony/Component/Console/Application.php:996
src/Symfony/Component/Console/Descriptor/XmlDescriptor.php:67 PhanTypeMismatchArgumentInternal Argument 2 (value) is int but \DOMElement::setAttribute() takes string
src/Symfony/Component/Console/Descriptor/XmlDescriptor.php:211 PhanTypeMismatchArgumentInternal Argument 2 (value) is int but \DOMElement::setAttribute() takes string
src/Symfony/Component/Console/Descriptor/XmlDescriptor.php:212 PhanTypeMismatchArgumentInternal Argument 2 (value) is int but \DOMElement::setAttribute() takes string
src/Symfony/Component/Console/Descriptor/XmlDescriptor.php:244 PhanTypeMismatchArgumentInternal Argument 2 (value) is int but \DOMElement::setAttribute() takes string
src/Symfony/Component/Console/Descriptor/XmlDescriptor.php:245 PhanTypeMismatchArgumentInternal Argument 2 (value) is int but \DOMElement::setAttribute() takes string
src/Symfony/Component/Console/Descriptor/XmlDescriptor.php:246 PhanTypeMismatchArgumentInternal Argument 2 (value) is int but \DOMElement::setAttribute() takes string
src/Symfony/Component/Console/Event/ConsoleErrorEvent.php:38 PhanTypeMismatchArgument Argument 1 (e) is null but \Symfony\Component\Debug\Exception\FatalThrowableError::__construct() takes \Throwable defined at src/Symfony/Component/Debug/Exception/FatalThrowableError.php:21
src/Symfony/Component/Console/Event/ConsoleErrorEvent.php:52 PhanTypeMismatchReturn Returning type null but getError() is declared to return \Throwable
src/Symfony/Component/Console/Event/ConsoleErrorEvent.php:66 PhanTypeMismatchProperty Assigning \Throwable to property but \Symfony\Component\Console\Event\ConsoleErrorEvent::error is null
src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php:100 PhanTypeMismatchProperty Assigning int[] to property but \Symfony\Component\Console\Formatter\OutputFormatterStyle::foreground is null
src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php:126 PhanTypeMismatchProperty Assigning int[] to property but \Symfony\Component\Console\Formatter\OutputFormatterStyle::background is null
src/Symfony/Component/Console/Helper/HelperSet.php:38 PhanTypeMismatchArgument Argument 2 (alias) is null but \Symfony\Component\Console\Helper\HelperSet::set() takes string defined at src/Symfony/Component/Console/Helper/HelperSet.php:48
src/Symfony/Component/Console/Helper/HelperSet.php:113 PhanTypeMismatchReturn Returning type \ArrayIterator but getIterator() is declared to return \Symfony\Component\Console\Helper\Helper[]
src/Symfony/Component/Console/Helper/ProcessHelper.php:56 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Helper\HelperInterface::start
src/Symfony/Component/Console/Helper/ProcessHelper.php:67 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Helper\HelperInterface::stop
src/Symfony/Component/Console/Helper/ProcessHelper.php:124 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Helper\HelperInterface::progress
src/Symfony/Component/Console/Helper/ProcessHelper.php:127 PhanTypeMismatchArgumentInternal Argument 1 (function) is ?callable but \call_user_func() takes callable
src/Symfony/Component/Console/Helper/ProgressBar.php:462 PhanTypeMismatchArgument Argument 1 (string) is int but \Symfony\Component\Console\Helper\Helper::strlen() takes string defined at src/Symfony/Component/Console/Helper/Helper.php:52
src/Symfony/Component/Console/Helper/ProgressBar.php:514 PhanTypeMismatchArgumentInternal Argument 2 (mult) is float but \str_repeat() takes int
src/Symfony/Component/Console/Helper/ProgressBar.php:555 PhanTypeMismatchArgumentInternal Argument 1 (input) is int but \str_pad() takes string
src/Symfony/Component/Console/Helper/QuestionHelper.php:213 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Helper\HelperInterface::formatBlock
src/Symfony/Component/Console/Helper/QuestionHelper.php:418 PhanTypeMismatchArgument Argument 2 (error) is null but \Symfony\Component\Console\Helper\QuestionHelper::writeError() takes \Exception defined at src/Symfony/Component/Console/Helper/QuestionHelper.php:210
src/Symfony/Component/Console/Helper/QuestionHelper.php:450 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\Console\Helper\QuestionHelper::shell is bool
src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php:71 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Question\Question::isMultiselect
src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php:72 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Question\Question::getChoices
src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php:84 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Question\Question::getChoices
src/Symfony/Component/Console/Helper/SymfonyQuestionHelper.php:90 PhanTypeMismatchArgument Argument 1 (text) is array but \Symfony\Component\Console\Formatter\OutputFormatter::escape() takes string defined at src/Symfony/Component/Console/Formatter/OutputFormatter.php:34
src/Symfony/Component/Console/Helper/Table.php:316 PhanTypeComparisonToArray int to array comparison
src/Symfony/Component/Console/Helper/Table.php:402 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Console/Helper/Table.php:491 PhanTypeComparisonToArray int to array comparison
src/Symfony/Component/Console/Helper/Table.php:578 PhanTypeArrayOperator Invalid array operator between types array and int
src/Symfony/Component/Console/Helper/Table.php:661 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Helper\Table::numberOfColumns is array
src/Symfony/Component/Console/Input/InputDefinition.php:90 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Console/Input/StringInput.php:57 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/Console/Input/StringInput.php:58 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/Console/Input/StringInput.php:60 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/Console/Input/StringInput.php:62 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/Console/Logger/ConsoleLogger.php:90 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Output\OutputInterface::getErrorOutput
src/Symfony/Component/Console/Output/Output.php:134 PhanTypeMismatchArgument Argument 1 (messages) is array but \Symfony\Component\Console\Output\Output::write() takes string defined at src/Symfony/Component/Console/Output/Output.php:140
src/Symfony/Component/Console/Output/StreamOutput.php:97 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_BUILD
src/Symfony/Component/Console/Output/StreamOutput.php:97 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_MAJOR
src/Symfony/Component/Console/Output/StreamOutput.php:97 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_MINOR
src/Symfony/Component/Console/Question/ConfirmationQuestion.php:53 PhanTypeMismatchArgumentInternal Argument 2 (subject) is null but \preg_match() takes string
src/Symfony/Component/Console/Question/Question.php:181 PhanTypeMismatchReturn Returning type ?callable but getValidator() is declared to return callable|null
src/Symfony/Component/Console/Style/OutputStyle.php:156 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Console\Output\OutputInterface::getErrorOutput
src/Symfony/Component/Console/Style/SymfonyStyle.php:266 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Console\Style\SymfonyStyle::progressBar is \Symfony\Component\Console\Helper\ProgressBar
src/Symfony/Component/Console/Style/SymfonyStyle.php:304 PhanTypeMismatchArgument Argument 1 (messages) is string but \Symfony\Component\Console\Output\BufferedOutput::write() takes array defined at src/Symfony/Component/Console/Output/Output.php:140
src/Symfony/Component/Console/Style/SymfonyStyle.php:334 PhanTypeMismatchArgument Argument 1 (messages) is string but \Symfony\Component\Console\Output\BufferedOutput::write() takes array defined at src/Symfony/Component/Console/Output/Output.php:140
src/Symfony/Component/CssSelector/Parser/Parser.php:199 PhanTypeMismatchArgument Argument 1 (pseudoElement) is null but \Symfony\Component\CssSelector\Exception\SyntaxErrorException::pseudoElementFound() takes string defined at src/Symfony/Component/CssSelector/Exception/SyntaxErrorException.php:43
src/Symfony/Component/CssSelector/Parser/Parser.php:367 PhanTypeMismatchArgument Argument 5 (value) is null but \Symfony\Component\CssSelector\Node\attributenode::__construct() takes string defined at src/Symfony/Component/CssSelector/Node/AttributeNode.php:58
src/Symfony/Component/CssSelector/Parser/Parser.php:385 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\CssSelector\Parser\Token::__construct() takes int defined at src/Symfony/Component/CssSelector/Parser/Token.php:54
src/Symfony/Component/CssSelector/Parser/Tokenizer/Tokenizer.php:77 PhanTypeMismatchArgument Argument 2 (value) is null but \Symfony\Component\CssSelector\Parser\Token::__construct() takes string defined at src/Symfony/Component/CssSelector/Parser/Token.php:54
src/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php:38 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\CssSelector\XPath\Extension\ExtensionInterface::setFlag
src/Symfony/Component/CssSelector/XPath/Translator.php:46 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\CssSelector\XPath\Translator::extensions is \Symfony\Component\CssSelector\XPath\Extension\ExtensionInterface
src/Symfony/Component/Debug/DebugClassLoader.php:44 PhanTypeArraySuspicious Suspicious array access to callable
src/Symfony/Component/Debug/DebugClassLoader.php:143 PhanTypeArraySuspicious Suspicious array access to callable
src/Symfony/Component/Debug/DebugClassLoader.php:264 PhanTypeMismatchArgumentInternal Argument 1 (haystack) is bool but \strrchr() takes string
src/Symfony/Component/Debug/DebugClassLoader.php:265 PhanTypeMismatchArgumentInternal Argument 3 (subject) is bool but \str_replace() takes array|string
src/Symfony/Component/Debug/ErrorHandler.php:252 PhanTypeMismatchReturn Returning type ?callable but setExceptionHandler() is declared to return callable|null
src/Symfony/Component/Debug/ErrorHandler.php:412 PhanDeprecatedClass Call to deprecated class \Symfony\Component\Debug\Exception\ContextErrorException defined at src/Symfony/Component/Debug/Exception/ContextErrorException.php:21
src/Symfony/Component/Debug/ErrorHandler.php:493 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\Debug\ErrorHandler::isRecursive is int
src/Symfony/Component/Debug/ErrorHandler.php:497 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\Debug\ErrorHandler::isRecursive is int
src/Symfony/Component/Debug/ErrorHandler.php:556 PhanTypeMismatchArgumentInternal Argument 1 (function) is ?callable but \call_user_func() takes callable
src/Symfony/Component/Debug/ErrorHandler.php:556 PhanTypeMismatchArgumentInternal Argument 1 (function) is ?callable|null but \call_user_func() takes callable
src/Symfony/Component/Debug/ErrorHandler.php:579 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Debug\ErrorHandler::reservedMemory is string
src/Symfony/Component/Debug/Exception/FatalErrorException.php:35 PhanUndeclaredFunction Call to undeclared function \xdebug_get_function_stack()
src/Symfony/Component/Debug/Exception/FatalErrorException.php:64 PhanUndeclaredFunction Call to undeclared function \symfony_debug_backtrace()
src/Symfony/Component/Debug/ExceptionHandler.php:60 PhanTypeArraySuspicious Suspicious array access to callable
src/Symfony/Component/Debug/ExceptionHandler.php:145 PhanTypeMismatchArgumentInternal Argument 1 (function) is ?callable but \call_user_func() takes callable
src/Symfony/Component/Debug/ExceptionHandler.php:357 PhanUndeclaredClassMethod Call to method format from undeclared class \false
src/Symfony/Component/Debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php:39 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/DependencyInjection/ChildDefinition.php:129 PhanTypeMismatchArgumentInternal Argument 1 (haystack) is int but \strpos() takes string
src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php:38 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass::container is \Symfony\Component\DependencyInjection\ContainerBuilder
src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php:65 PhanTypeMismatchArgument Argument 4 (destValue) is \Symfony\Component\DependencyInjection\Definition|null but \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph::connect() takes string defined at src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraph.php:89
src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php:65 PhanTypeMismatchArgument Argument 5 (reference) is null but \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph::connect() takes string defined at src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraph.php:89
src/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php:86 PhanTypeMismatchArgument Argument 4 (destValue) is \Symfony\Component\DependencyInjection\Definition|null but \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph::connect() takes string defined at src/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraph.php:89
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:67 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Compiler\AutowirePass::getResourceMetadataForMethod() defined at src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:480
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:71 PhanDeprecatedClass Call to deprecated class \Symfony\Component\DependencyInjection\Config\AutowireServiceResource defined at src/Symfony/Component/DependencyInjection/Config/AutowireServiceResource.php:22
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:316 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\DependencyInjection\Compiler\AutowirePass::types is null
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:336 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:338 PhanTypeMismatchProperty Assigning string[] to property but \Symfony\Component\DependencyInjection\Compiler\AutowirePass::types is null
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:376 PhanTypeMismatchProperty Assigning string[] to property but \Symfony\Component\DependencyInjection\Compiler\AutowirePass::types is null
src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:414 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\DependencyInjection\Compiler\AutowirePass::lastFailure is null
src/Symfony/Component/DependencyInjection/Compiler/Compiler.php:67 PhanDeprecatedClass Call to deprecated class \Symfony\Component\DependencyInjection\Compiler\LoggingFormatter defined at src/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php:23
src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php:56 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php:62 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Compiler/DecoratorServicePass.php:63 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::setAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:730
src/Symfony/Component/DependencyInjection/Compiler/FactoryReturnTypePass.php:44 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Compiler\ResolveClassPass::getChanges() defined at src/Symfony/Component/DependencyInjection/Compiler/ResolveClassPass.php:49
src/Symfony/Component/DependencyInjection/Compiler/InlineServiceDefinitionsPass.php:93 PhanUndeclaredVariable Variable $factory is undeclared
src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php:57 PhanDeprecatedClass Call to deprecated class \Symfony\Component\DependencyInjection\Compiler\FactoryReturnTypePass defined at src/Symfony/Component/DependencyInjection/Compiler/FactoryReturnTypePass.php:23
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:36 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Reference::hasTag
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:36 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Reference::isAbstract
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:36 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Reference::isSynthetic
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:41 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Reference::isAutowired
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:43 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Reference::getTag
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:63 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Reference::getClass
src/Symfony/Component/DependencyInjection/Compiler/RegisterServiceSubscribersPass.php:81 PhanTypeMismatchArgumentInternal Argument 1 (str) is null but \substr() takes string
src/Symfony/Component/DependencyInjection/Compiler/ReplaceAliasByActualDefinitionPass.php:59 PhanTypeMismatchArgumentInternal Argument 2 (code) is null but \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException::__construct() takes int
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:62 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Exception\ExceptionInterface::getMessage
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:92 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:93 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:93 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::setAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:730
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:99 PhanTypeMismatchArgument Argument 1 (configurator) is callable|null but \Symfony\Component\DependencyInjection\Definition::setConfigurator() takes array|string defined at src/Symfony/Component/DependencyInjection/Definition.php:698
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:115 PhanTypeMismatchArgument Argument 1 (configurator) is callable|null but \Symfony\Component\DependencyInjection\Definition::setConfigurator() takes array|string defined at src/Symfony/Component/DependencyInjection/Definition.php:698
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:148 PhanTypeMismatchArgumentInternal Argument 1 (haystack) is null but \strpos() takes string
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:149 PhanTypeMismatchArgumentInternal Argument 1 (str) is null but \substr() takes string
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:166 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\ChildDefinition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php:167 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::addAutowiringType() defined at src/Symfony/Component/DependencyInjection/Definition.php:794
src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:46 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Compiler\ResolveInvalidReferencesPass::container is \Symfony\Component\DependencyInjection\ContainerBuilder
src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:46 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Compiler\ResolveInvalidReferencesPass::signalingException is \Symfony\Component\DependencyInjection\Exception\RuntimeException
src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:58 PhanTypeMismatchArgument Argument 1 (value) is \Symfony\Component\DependencyInjection\Reference[]|string[] but \Symfony\Component\DependencyInjection\Compiler\ResolveInvalidReferencesPass::processValue() takes \Symfony\Component\DependencyInjection\Definition[] defined at src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:55
src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:65 PhanTypeMismatchArgument Argument 1 (arguments) is \Symfony\Component\DependencyInjection\Definition but \Symfony\Component\DependencyInjection\Definition::setArguments() takes array defined at src/Symfony/Component/DependencyInjection/Definition.php:181
src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:66 PhanTypeMismatchArgument Argument 1 (properties) is \Symfony\Component\DependencyInjection\Definition but \Symfony\Component\DependencyInjection\Definition::setProperties() takes array defined at src/Symfony/Component/DependencyInjection/Definition.php:188
src/Symfony/Component/DependencyInjection/Compiler/ResolveInvalidReferencesPass.php:67 PhanTypeMismatchArgument Argument 1 (calls) is \Symfony\Component\DependencyInjection\Definition but \Symfony\Component\DependencyInjection\Definition::setMethodCalls() takes array defined at src/Symfony/Component/DependencyInjection/Definition.php:292
src/Symfony/Component/DependencyInjection/Compiler/ResolveParameterPlaceHoldersPass.php:52 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Compiler\ResolveParameterPlaceHoldersPass::bag is \Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface
src/Symfony/Component/DependencyInjection/Config/AutowireServiceResource.php:53 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Compiler\AutowirePass::createResourceForClass() defined at src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php:59
src/Symfony/Component/DependencyInjection/Config/ContainerParametersResourceChecker.php:44 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Config\Resource\ResourceInterface::getParameters
src/Symfony/Component/DependencyInjection/ContainerBuilder.php:631 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface::mergeEnvPlaceholders
src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1094 PhanTypeMismatchArgument Argument 2 (id) is null but \Symfony\Component\DependencyInjection\ContainerBuilder::createService() takes string defined at src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1007
src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1181 PhanTypeMismatchArgument Argument 2 (id) is null but \Symfony\Component\DependencyInjection\ContainerBuilder::createService() takes string defined at src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1007
src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1307 PhanTypeArraySuspicious Suspicious array access to ?array
src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1307 PhanTypeArraySuspicious Suspicious array access to ?array|null
src/Symfony/Component/DependencyInjection/ContainerBuilder.php:1436 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/DependencyInjection/Definition.php:132 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\DependencyInjection\Definition::decoratedService is null
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:126 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\DependencyInjection\Dumper\Dumper->classResources
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:126 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\DependencyInjection\Dumper\PhpDumper->classResources
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:153 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::targetDirRegex is null
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:216 PhanTypeMismatchArgument Argument 1 (definition) is string but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::getInlinedDefinitions() takes \Symfony\Component\DependencyInjection\Definition defined at src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:1303
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:364 PhanTypeMismatchArgument Argument 1 (id) is null but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::addServiceMethodCalls() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:475
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:365 PhanTypeMismatchArgument Argument 1 (id) is null but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::addServiceConfigurator() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:554
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:534 PhanTypeMismatchArgument Argument 1 (id) is null but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::addServiceMethodCalls() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:475
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:535 PhanTypeMismatchArgument Argument 1 (id) is null but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::addServiceConfigurator() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:554
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:680 PhanParamTooMany Call with 3 arg(s) to \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface::getProxyFactoryCode() which only takes 2 arg(s) defined at src/Symfony/Component/DependencyInjection/LazyProxy/PhpDumper/DumperInterface.php:41
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:688 PhanTypeMismatchArgument Argument 2 (definition) is \Symfony\Component\DependencyInjection\Definition but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::addServiceLocalTempVariables() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:210
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:698 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::definitionVariables is \SplObjectStorage
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:699 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Dumper\PhpDumper::referenceVariables is \Symfony\Component\DependencyInjection\Variable[]|array
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:1527 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php:1747 PhanTypeMismatchArgumentInternal Argument 1 (pattern) is null but \preg_match() takes string
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:59 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DependencyInjection\Dumper\XmlDumper::document is \DOMDocument
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:177 PhanTypeMismatchArgument Argument 2 (id) is null but \Symfony\Component\DependencyInjection\Dumper\XmlDumper::addService() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:110
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:201 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:211 PhanTypeArraySuspicious Suspicious array access to callable
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:211 PhanTypeArraySuspicious Suspicious array access to callable|null
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:212 PhanTypeMismatchArgument Argument 2 (id) is null but \Symfony\Component\DependencyInjection\Dumper\XmlDumper::addService() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:110
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:218 PhanTypeMismatchArgumentInternal Argument 2 (value) is callable but \DOMElement::setAttribute() takes string
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:218 PhanTypeMismatchArgumentInternal Argument 2 (value) is callable|null but \DOMElement::setAttribute() takes string
src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:313 PhanTypeMismatchArgument Argument 2 (id) is null but \Symfony\Component\DependencyInjection\Dumper\XmlDumper::addService() takes string defined at src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php:110
src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php:113 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\Definition::getAutowiringTypes() defined at src/Symfony/Component/DependencyInjection/Definition.php:776
src/Symfony/Component/DependencyInjection/ExpressionLanguage.php:31 PhanTypeMismatchArgument Argument 1 (cache) is ?\Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface|\Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface but \Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct() takes \Psr\Cache\CacheItemPoolInterface defined at src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php:40
src/Symfony/Component/DependencyInjection/LazyProxy/ProxyHelper.php:107 PhanUndeclaredMethod Call to undeclared method \ReflectionFunctionAbstract::getDeclaringClass
src/Symfony/Component/DependencyInjection/LazyProxy/ProxyHelper.php:109 PhanUndeclaredMethod Call to undeclared method \ReflectionFunctionAbstract::getDeclaringClass
src/Symfony/Component/DependencyInjection/LazyProxy/ProxyHelper.php:120 PhanTypeMismatchForeach bool passed to foreach instead of array
src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php:330 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\ChildDefinition::addAutowiringType() defined at src/Symfony/Component/DependencyInjection/Definition.php:794
src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php:415 PhanTypeMismatchArgumentInternal Argument 2 (value) is null but \DOMElement::__construct() takes string
src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php:539 PhanUndeclaredVariable Variable $extension is undeclared
src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php:114 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php:497 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\ChildDefinition::addAutowiringType() defined at src/Symfony/Component/DependencyInjection/Definition.php:794
src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php:508 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\DependencyInjection\ChildDefinition::addAutowiringType() defined at src/Symfony/Component/DependencyInjection/Definition.php:794
src/Symfony/Component/DependencyInjection/ParameterBag/EnvPlaceholderParameterBag.php:49 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php:100 PhanTypeMismatchArgument Argument 2 (sourceId) is null but \Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException::__construct() takes string defined at src/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php:35
src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php:100 PhanTypeMismatchArgument Argument 3 (sourceKey) is null but \Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException::__construct() takes string defined at src/Symfony/Component/DependencyInjection/Exception/ParameterNotFoundException.php:35
src/Symfony/Component/DomCrawler/Crawler.php:444 PhanTypeMismatchArgument Argument 1 (node) is \DOMNode but \Symfony\Component\DomCrawler\Crawler::sibling() takes \DOMElement defined at src/Symfony/Component/DomCrawler/Crawler.php:1087
src/Symfony/Component/DomCrawler/Crawler.php:519 PhanTypeMismatchArgument Argument 1 (node) is \DOMNode but \Symfony\Component\DomCrawler\Crawler::sibling() takes \DOMElement defined at src/Symfony/Component/DomCrawler/Crawler.php:1087
src/Symfony/Component/DomCrawler/Crawler.php:864 PhanTypeMismatchArgument Argument 1 (values) is ?array but \Symfony\Component\DomCrawler\Form::setValues() takes array defined at src/Symfony/Component/DomCrawler/Form.php:74
src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php:96 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\DomCrawler\Field\ChoiceFormField::setValue() takes string defined at src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php:120
src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php:110 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\DomCrawler\Field\ChoiceFormField::setValue() takes string defined at src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php:120
src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php:124 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\DomCrawler\Field\ChoiceFormField::value is string
src/Symfony/Component/DomCrawler/Field/FileFormField.php:35 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\DomCrawler\Field\FileFormField::value is string
src/Symfony/Component/DomCrawler/Field/FileFormField.php:62 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Component/DomCrawler/Field/FileFormField.php:78 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\DomCrawler\Field\FileFormField::value is string
src/Symfony/Component/DomCrawler/Field/FileFormField.php:106 PhanTypeMismatchArgument Argument 1 (value) is null but \Symfony\Component\DomCrawler\Field\FileFormField::setValue() takes string defined at src/Symfony/Component/DomCrawler/Field/FileFormField.php:53
src/Symfony/Component/DomCrawler/Form.php:471 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DomCrawler\Field\FormField::addChoice
src/Symfony/Component/Dotenv/Dotenv.php:125 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Dotenv\Dotenv::data is array|string
src/Symfony/Component/Dotenv/Dotenv.php:126 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Dotenv\Dotenv::path is string
src/Symfony/Component/Dotenv/Dotenv.php:160 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/Dotenv/Dotenv.php:241 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/EventDispatcher/ContainerAwareEventDispatcher.php:171 PhanTypeMismatchForeach null passed to foreach instead of array
src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php:270 PhanTypeMismatchArgument Argument 2 (context) is null but \Psr\Log\LoggerInterface::debug() takes array defined at vendor/psr/log/Psr/Log/LoggerInterface.php:111
src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php:281 PhanTypeMismatchArgument Argument 2 (context) is null but \Psr\Log\LoggerInterface::debug() takes array defined at vendor/psr/log/Psr/Log/LoggerInterface.php:111
src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php:286 PhanTypeMismatchArgument Argument 2 (context) is null but \Psr\Log\LoggerInterface::debug() takes array defined at vendor/psr/log/Psr/Log/LoggerInterface.php:111
src/Symfony/Component/EventDispatcher/Debug/WrappedListener.php:59 PhanTypeMismatchArgumentInternal Argument 1 (object) is null but \get_class() takes object
src/Symfony/Component/ExpressionLanguage/Compiler.php:116 PhanTypeMismatchArgumentInternal Argument 2 (locale) is int but \setlocale() takes array
src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php:81 PhanTypeMismatchReturn Returning type array but evaluate() is declared to return string
src/Symfony/Component/ExpressionLanguage/Lexer.php:45 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/ExpressionLanguage/Lexer.php:51 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:51 PhanTypeMismatchArgument Argument 2 (value) is float|int but \Symfony\Component\ExpressionLanguage\Token::__construct() takes string defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:57 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:70 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:72 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/ExpressionLanguage/Lexer.php:74 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:76 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/ExpressionLanguage/Lexer.php:78 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:82 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:84 PhanTypeMismatchArgumentInternal Argument 4 (flags) is null but \preg_match() takes int
src/Symfony/Component/ExpressionLanguage/Lexer.php:86 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:94 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\Token::__construct() takes int defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Lexer.php:94 PhanTypeMismatchArgument Argument 2 (value) is null but \Symfony\Component\ExpressionLanguage\Token::__construct() takes string defined at src/Symfony/Component/ExpressionLanguage/Token.php:39
src/Symfony/Component/ExpressionLanguage/Node/Node.php:89 PhanNonClassMethodCall Call to method dump on non-class type null
src/Symfony/Component/ExpressionLanguage/Parser.php:144 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:239 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:245 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:256 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:263 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:269 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:295 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:300 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:349 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:368 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:371 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/Parser.php:376 PhanTypeMismatchArgument Argument 1 (type) is string but \Symfony\Component\ExpressionLanguage\TokenStream::expect() takes array|int defined at src/Symfony/Component/ExpressionLanguage/TokenStream.php:71
src/Symfony/Component/ExpressionLanguage/ParserCache/ParserCacheAdapter.php:35 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$key
src/Symfony/Component/ExpressionLanguage/ParserCache/ParserCacheAdapter.php:36 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$value
src/Symfony/Component/ExpressionLanguage/ParserCache/ParserCacheAdapter.php:37 PhanAccessPropertyProtected Cannot access protected property \Symfony\Component\Cache\CacheItem::$isHit
src/Symfony/Component/ExpressionLanguage/Token.php:53 PhanTypeMismatchArgumentInternal Argument 1 (str) is int but \strtoupper() takes string
src/Symfony/Component/Filesystem/Filesystem.php:58 PhanTypeMismatchArgumentInternal Argument 3 (use_include_path) is null but \fopen() takes bool
src/Symfony/Component/Filesystem/Filesystem.php:626 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Component/Filesystem/LockHandler.php:93 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Filesystem\LockHandler::handle is resource
src/Symfony/Component/Filesystem/LockHandler.php:109 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Filesystem\LockHandler::handle is resource
src/Symfony/Component/Finder/Finder.php:387 PhanTypeMismatchProperty Assigning \Closure to property but \Symfony\Component\Finder\Finder::sort is bool
src/Symfony/Component/Finder/Finder.php:403 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\Finder\Finder::sort is bool
src/Symfony/Component/Finder/Finder.php:419 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\Finder\Finder::sort is bool
src/Symfony/Component/Finder/Finder.php:437 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\Finder\Finder::sort is bool
src/Symfony/Component/Finder/Finder.php:457 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\Finder\Finder::sort is bool
src/Symfony/Component/Finder/Finder.php:475 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\Finder\Finder::sort is bool
src/Symfony/Component/Finder/Finder.php:678 PhanTypeMismatchArgument Argument 2 (minDepth) is string but \Symfony\Component\Finder\Iterator\DepthRangeFilterIterator::__construct() takes int defined at src/Symfony/Component/Finder/Iterator/DepthRangeFilterIterator.php:30
src/Symfony/Component/Finder/Finder.php:678 PhanTypeMismatchArgument Argument 3 (maxDepth) is string but \Symfony\Component\Finder\Iterator\DepthRangeFilterIterator::__construct() takes int defined at src/Symfony/Component/Finder/Iterator/DepthRangeFilterIterator.php:30
src/Symfony/Component/Finder/Finder.php:710 PhanTypeMismatchArgument Argument 2 (sort) is bool but \Symfony\Component\Finder\Iterator\SortableIterator::__construct() takes callable|int defined at src/Symfony/Component/Finder/Iterator/SortableIterator.php:38
src/Symfony/Component/Finder/Iterator/DepthRangeFilterIterator.php:45 PhanUndeclaredMethod Call to undeclared method \Iterator::getDepth
src/Symfony/Component/Finder/Iterator/ExcludeDirectoryFilterIterator.php:59 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::getFilename
src/Symfony/Component/Finder/Iterator/ExcludeDirectoryFilterIterator.php:59 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::isDir
src/Symfony/Component/Finder/Iterator/ExcludeDirectoryFilterIterator.php:64 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::isDir
src/Symfony/Component/Finder/Iterator/ExcludeDirectoryFilterIterator.php:75 PhanUndeclaredMethod Call to undeclared method \Iterator::hasChildren
src/Symfony/Component/Finder/Iterator/ExcludeDirectoryFilterIterator.php:80 PhanUndeclaredMethod Call to undeclared method \Iterator::getChildren
src/Symfony/Component/Form/AbstractExtension.php:55 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/AbstractExtension.php:71 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/AbstractExtension.php:83 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/AbstractExtension.php:97 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/ChoiceList/ArrayChoiceList.php:192 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/ChoiceList/Factory/CachingFactoryDecorator.php:78 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/ChoiceList/Factory/DefaultChoiceListFactory.php:121 PhanTypeMismatchArgumentInternal Argument 1 (function) is int but \call_user_func() takes callable
src/Symfony/Component/Form/ChoiceList/Factory/DefaultChoiceListFactory.php:121 PhanTypeMismatchArgumentInternal Argument 1 (function) is null but \call_user_func() takes callable
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:74 PhanTypeMismatchProperty Assigning ?callable to property but \Symfony\Component\Form\ChoiceList\LazyChoiceList::value is callable|null
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:82 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:85 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:89 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:93 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:94 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:96 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:106 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:108 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:112 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:116 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:117 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:119 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:129 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:131 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:135 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:139 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:140 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:142 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:152 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:154 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:158 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:162 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:163 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:165 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:175 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:177 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:181 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:192 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loaded defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:58
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:194 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:198 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\Form\ChoiceList\LazyChoiceList::loadedList defined at src/Symfony/Component/Form/ChoiceList/LazyChoiceList.php:51
src/Symfony/Component/Form/ChoiceList/View/ChoiceGroupView.php:55 PhanTypeMismatchReturn Returning type \ArrayIterator but getIterator() is declared to return \Symfony\Component\Form\ChoiceList\View\ChoiceGroupView[]|\Symfony\Component\Form\ChoiceList\View\ChoiceView[]
src/Symfony/Component/Form/Extension/Core/DataTransformer/ChoicesToValuesTransformer.php:44 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/Extension/Core/DataTransformer/ChoicesToValuesTransformer.php:66 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/Extension/Core/DataTransformer/DateIntervalToArrayTransformer.php:116 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToArrayTransformer.php:82 PhanUndeclaredMethod Call to undeclared method \DateTimeInterface::setTimezone
src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToArrayTransformer.php:118 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToRfc3339Transformer.php:45 PhanUndeclaredMethod Call to undeclared method \DateTimeInterface::setTimezone
src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php:108 PhanUndeclaredMethod Call to undeclared method \DateTimeInterface::setTimezone
src/Symfony/Component/Form/Extension/Core/DataTransformer/NumberToLocalizedStringTransformer.php:250 PhanTypeMismatchArgumentInternal Argument 1 (number) is string but \ceil() takes float
src/Symfony/Component/Form/Extension/Core/Type/DateType.php:82 PhanTypeMismatchArgumentInternal Argument 4 (timezone) is null but \IntlDateFormatter::__construct() takes int
src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php:92 PhanTypeMismatchArgumentInternal Argument 1 (num) is string but \NumberFormatter::formatCurrency() takes float
src/Symfony/Component/Form/Extension/Core/Type/SubmitType.php:28 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Form\FormInterface::isClicked
src/Symfony/Component/Form/Extension/DataCollector/DataCollectorExtension.php:32 PhanTypeMismatchProperty Assigning \Symfony\Component\Form\Extension\DataCollector\FormDataCollectorInterface to property but \Symfony\Component\Form\Extension\DataCollector\DataCollectorExtension::dataCollector is \Symfony\Component\EventDispatcher\EventSubscriberInterface
src/Symfony/Component/Form/Extension/DataCollector/DataCollectorExtension.php:41 PhanTypeMismatchArgument Argument 1 (dataCollector) is \Symfony\Component\EventDispatcher\EventSubscriberInterface but \Symfony\Component\Form\Extension\DataCollector\Type\DataCollectorTypeExtension::__construct() takes \Symfony\Component\Form\Extension\DataCollector\FormDataCollectorInterface defined at src/Symfony/Component/Form/Extension/DataCollector/Type/DataCollectorTypeExtension.php:32
src/Symfony/Component/Form/Extension/DataCollector/FormDataCollector.php:301 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\Form\Extension\DataCollector\FormDataCollector::cloner is \Symfony\Component\VarDumper\Cloner\ClonerInterface|\Symfony\Component\VarDumper\Cloner\VarCloner
src/Symfony/Component/Form/Extension/DataCollector/FormDataCollector.php:305 PhanParamTooMany Call with 2 arg(s) to \Symfony\Component\VarDumper\Cloner\ClonerInterface::cloneVar() which only takes 1 arg(s) defined at src/Symfony/Component/VarDumper/Cloner/ClonerInterface.php:26
src/Symfony/Component/Form/Extension/DataCollector/FormDataCollector.php:309 PhanDeprecatedClass Call to deprecated class \Symfony\Component\HttpKernel\DataCollector\Util\ValueExporter defined at src/Symfony/Component/HttpKernel/DataCollector/Util/ValueExporter.php:21
src/Symfony/Component/Form/Extension/DataCollector/FormDataExtractor.php:121 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\ConstraintViolationInterface::getCause
src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php:132 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Form\FormInterface::getClickedButton
src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php:136 PhanNonClassMethodCall Call to method getConfig on non-class type null
src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php:171 PhanTypeMismatchReturn Returning type \Symfony\Component\Validator\Constraints\GroupSequence but resolveValidationGroups() is declared to return array
src/Symfony/Component/Form/Extension/Validator/ValidatorExtension.php:39 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\MetadataInterface::addConstraint
src/Symfony/Component/Form/Extension/Validator/ValidatorExtension.php:40 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\MetadataInterface::addPropertyConstraint
src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php:176 PhanTypeMismatchArgument Argument 1 (value) is bool but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php:198 PhanTypeMismatchArgument Argument 1 (value) is null but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php:204 PhanTypeMismatchArgument Argument 1 (value) is int but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php:227 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Constraint::getHtmlPattern
src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php:242 PhanTypeMismatchArgument Argument 1 (value) is null but \Symfony\Component\Form\Guess\ValueGuess::__construct() takes string defined at src/Symfony/Component/Form/Guess/ValueGuess.php:35
src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationMapper.php:206 PhanTypeMismatchArgumentInternal Argument 1 (position) is \scalar|null but \Symfony\Component\PropertyAccess\PropertyPathIteratorInterface::seek() takes int
src/Symfony/Component/Form/Extension/Validator/ViolationMapper/ViolationPathIterator.php:28 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\PropertyAccess\PropertyPathInterface::mapsForm
src/Symfony/Component/Form/Form.php:184 PhanTypeMismatchProperty Assigning \Symfony\Component\Form\Util\OrderedHashMap to property but \Symfony\Component\Form\Form::children is \Symfony\Component\Form\FormInterface[]
src/Symfony/Component/Form/Form.php:383 PhanTypeMismatchArgumentInternal Argument 1 (it) is \ArrayAccess[]|\Countable[]|\Symfony\Component\Form\FormInterface[]|\Traversable[] but \Symfony\Component\Form\Util\InheritDataAwareIterator::__construct() takes \Traversable
src/Symfony/Component/Form/Form.php:582 PhanTypeMismatchProperty Assigning \Symfony\Component\Form\ClickableInterface to property but \Symfony\Component\Form\Form::clickedButton is \Symfony\Component\Form\Button
src/Symfony/Component/Form/Form.php:587 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Form\ClickableInterface::getClickedButton
src/Symfony/Component/Form/Form.php:588 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Form\ClickableInterface::getClickedButton
src/Symfony/Component/Form/Form.php:628 PhanTypeMismatchArgumentInternal Argument 1 (it) is \ArrayAccess[]|\Countable[]|\Symfony\Component\Form\FormInterface[]|\Traversable[] but \Symfony\Component\Form\Util\InheritDataAwareIterator::__construct() takes \Traversable
src/Symfony/Component/Form/Form.php:764 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Form\FormInterface::getClickedButton
src/Symfony/Component/Form/Form.php:807 PhanTypeMismatchArgumentInternal Argument 1 (it) is \ArrayAccess[]|\Countable[]|\Symfony\Component\Form\FormInterface[]|\Traversable[] but \iterator_to_array() takes \Traversable
src/Symfony/Component/Form/Form.php:863 PhanTypeMismatchArgument Argument 2 (property) is \ArrayAccess|\Countable|\Symfony\Component\Form\FormInterface|\Traversable but \Symfony\Component\Form\FormFactoryInterface::createForProperty() takes string defined at src/Symfony/Component/Form/FormFactoryInterface.php:64
src/Symfony/Component/Form/Form.php:865 PhanTypeMismatchArgument Argument 1 (name) is \ArrayAccess|\Countable|\Symfony\Component\Form\FormInterface|\Traversable but \Symfony\Component\Form\FormFactoryInterface::createNamed() takes int|string defined at src/Symfony/Component/Form/FormFactoryInterface.php:48
src/Symfony/Component/Form/FormBuilder.php:200 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Form\FormConfigBuilder->children
src/Symfony/Component/Form/FormBuilder.php:200 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Form\FormConfigBuilderInterface->children
src/Symfony/Component/Form/FormBuilder.php:201 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Form\FormConfigBuilder->unresolvedChildren
src/Symfony/Component/Form/FormBuilder.php:201 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Form\FormConfigBuilderInterface->unresolvedChildren
src/Symfony/Component/Form/FormBuilder.php:243 PhanTypeMismatchReturn Returning type \ArrayIterator but getIterator() is declared to return \Symfony\Component\Form\FormBuilderInterface[]
src/Symfony/Component/Form/Guess/ValueGuess.php:39 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\Form\Guess\ValueGuess::value is array
src/Symfony/Component/Form/Test/TypeTestCase.php:33 PhanTypeMismatchProperty Assigning \PHPUnit_Framework_MockObject_MockObject to property but \Symfony\Component\Form\Test\TypeTestCase::dispatcher is \Symfony\Component\EventDispatcher\EventDispatcher
src/Symfony/Component/Form/Test/TypeTestCase.php:34 PhanTypeMismatchArgument Argument 1 (name) is null but \Symfony\Component\Form\FormBuilder::__construct() takes string defined at src/Symfony/Component/Form/FormBuilder.php:49
src/Symfony/Component/Form/Test/TypeTestCase.php:34 PhanTypeMismatchArgument Argument 2 (dataClass) is null but \Symfony\Component\Form\FormBuilder::__construct() takes string defined at src/Symfony/Component/Form/FormBuilder.php:49
src/Symfony/Component/HttpFoundation/AcceptHeaderItem.php:70 PhanUndeclaredVariable Variable $start is undeclared
src/Symfony/Component/HttpFoundation/BinaryFileResponse.php:134 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/HttpFoundation/File/MimeType/MimeTypeGuesser.php:75 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser::instance is \Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser
src/Symfony/Component/HttpFoundation/Request.php:284 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::languages is array
src/Symfony/Component/HttpFoundation/Request.php:285 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::charsets is array
src/Symfony/Component/HttpFoundation/Request.php:286 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::encodings is array
src/Symfony/Component/HttpFoundation/Request.php:287 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::acceptableContentTypes is array
src/Symfony/Component/HttpFoundation/Request.php:288 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::pathInfo is string
src/Symfony/Component/HttpFoundation/Request.php:290 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::baseUrl is string
src/Symfony/Component/HttpFoundation/Request.php:291 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::basePath is string
src/Symfony/Component/HttpFoundation/Request.php:292 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::method is string
src/Symfony/Component/HttpFoundation/Request.php:293 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::format is string
src/Symfony/Component/HttpFoundation/Request.php:466 PhanTypeMismatchArgument Argument 1 (parameters) is ?array but \Symfony\Component\HttpFoundation\ParameterBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:469 PhanTypeMismatchArgument Argument 1 (parameters) is ?array but \Symfony\Component\HttpFoundation\ParameterBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:472 PhanTypeMismatchArgument Argument 1 (parameters) is ?array but \Symfony\Component\HttpFoundation\ParameterBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:475 PhanTypeMismatchArgument Argument 1 (parameters) is ?array but \Symfony\Component\HttpFoundation\ParameterBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:475 PhanTypeMismatchArgument Argument 1 (parameters) is ?array|null but \Symfony\Component\HttpFoundation\ParameterBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:478 PhanTypeMismatchArgument Argument 1 (parameters) is ?array but \Symfony\Component\HttpFoundation\FileBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/FileBag.php:31
src/Symfony/Component/HttpFoundation/Request.php:478 PhanTypeMismatchArgument Argument 1 (parameters) is ?array|null but \Symfony\Component\HttpFoundation\FileBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/FileBag.php:31
src/Symfony/Component/HttpFoundation/Request.php:481 PhanTypeMismatchArgument Argument 1 (parameters) is ?array but \Symfony\Component\HttpFoundation\ServerBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:481 PhanTypeMismatchArgument Argument 1 (parameters) is ?array|null but \Symfony\Component\HttpFoundation\ServerBag::__construct() takes array defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:33
src/Symfony/Component/HttpFoundation/Request.php:484 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::languages is array
src/Symfony/Component/HttpFoundation/Request.php:485 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::charsets is array
src/Symfony/Component/HttpFoundation/Request.php:486 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::encodings is array
src/Symfony/Component/HttpFoundation/Request.php:487 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::acceptableContentTypes is array
src/Symfony/Component/HttpFoundation/Request.php:488 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::pathInfo is string
src/Symfony/Component/HttpFoundation/Request.php:489 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::requestUri is string
src/Symfony/Component/HttpFoundation/Request.php:490 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::baseUrl is string
src/Symfony/Component/HttpFoundation/Request.php:491 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::basePath is string
src/Symfony/Component/HttpFoundation/Request.php:492 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::method is string
src/Symfony/Component/HttpFoundation/Request.php:493 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::format is string
src/Symfony/Component/HttpFoundation/Request.php:499 PhanTypeMismatchArgument Argument 1 (default) is null but \Symfony\Component\HttpFoundation\Request::getRequestFormat() takes string defined at src/Symfony/Component/HttpFoundation/Request.php:1438
src/Symfony/Component/HttpFoundation/Request.php:500 PhanTypeMismatchArgument Argument 1 (default) is null but \Symfony\Component\HttpFoundation\Request::getRequestFormat() takes string defined at src/Symfony/Component/HttpFoundation/Request.php:1438
src/Symfony/Component/HttpFoundation/Request.php:533 PhanTypeMismatchReturn Returning type bool but __toString() is declared to return string
src/Symfony/Component/HttpFoundation/Request.php:597 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaderNames defined at src/Symfony/Component/HttpFoundation/Request.php:229
src/Symfony/Component/HttpFoundation/Request.php:598 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:673 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:677 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:680 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaderNames defined at src/Symfony/Component/HttpFoundation/Request.php:229
src/Symfony/Component/HttpFoundation/Request.php:701 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:705 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:1302 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpFoundation\Request::method is string
src/Symfony/Component/HttpFoundation/Request.php:1359 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1375 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1396 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1418 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1599 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\HttpFoundation\Request::content is \false|resource|string
src/Symfony/Component/HttpFoundation/Request.php:1599 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\HttpFoundation\Request::content is resource|string
src/Symfony/Component/HttpFoundation/Request.php:1651 PhanTypeArraySuspicious Suspicious array access to ?array
src/Symfony/Component/HttpFoundation/Request.php:1665 PhanTypeMismatchArgumentInternal Argument 2 (arr2) is ?array but \array_intersect() takes array
src/Symfony/Component/HttpFoundation/Request.php:1667 PhanTypeArraySuspicious Suspicious array access to ?array
src/Symfony/Component/HttpFoundation/Request.php:1677 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1717 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1731 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:1745 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Request.php:2032 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:2033 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:2038 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:2039 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Request.php:2061 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpFoundation\Request::trustedHeaders defined at src/Symfony/Component/HttpFoundation/Request.php:86
src/Symfony/Component/HttpFoundation/Response.php:207 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/HttpFoundation/Response.php:339 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/HttpFoundation/Response.php:657 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php:50 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php:66 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php:91 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php:133 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php:24 PhanUndeclaredTypeProperty Property \Symfony\Component\HttpFoundation\Session\Storage\Handler\MemcacheSessionHandler::memcache has undeclared type \Memcache
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php:48 PhanUndeclaredTypeParameter Parameter of undeclared type \Memcache
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php:82 PhanUndeclaredClassMethod Call to method get from undeclared class \Memcache
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php:90 PhanUndeclaredClassMethod Call to method set from undeclared class \Memcache
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php:98 PhanUndeclaredClassMethod Call to method delete from undeclared class \Memcache
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php:29 PhanUndeclaredTypeProperty Property \Symfony\Component\HttpFoundation\Session\Storage\Handler\MemcachedSessionHandler::memcached has undeclared type \Memcached
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php:53 PhanUndeclaredTypeParameter Parameter of undeclared type \Memcached
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php:88 PhanUndeclaredClassMethod Call to method get from undeclared class \Memcached
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php:96 PhanUndeclaredClassMethod Call to method set from undeclared class \Memcached
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php:104 PhanUndeclaredClassMethod Call to method delete from undeclared class \Memcached
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:24 PhanUndeclaredTypeProperty Property \Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler::mongo has undeclared type \Mongo
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:24 PhanUndeclaredTypeProperty Property \Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler::mongo has undeclared type \MongoClient
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:24 PhanUndeclaredTypeProperty Property \Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler::mongo has undeclared type \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:29 PhanUndeclaredTypeProperty Property \Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler::collection has undeclared type \MongoCollection
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:70 PhanUndeclaredTypeParameter Parameter of undeclared type \Mongo
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:70 PhanUndeclaredTypeParameter Parameter of undeclared type \MongoClient
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:70 PhanUndeclaredTypeParameter Parameter of undeclared type \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:72 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \Mongo
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:72 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoClient
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:72 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:111 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:125 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:148 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:149 PhanUndeclaredClassConstant Reference to constant TYPE_OLD_BINARY from undeclared class \MongoDB\BSON\Binary
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:149 PhanUndeclaredClassMethod Call to method __construct from undeclared class \MongoDB\BSON\Binary
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:151 PhanUndeclaredClassConstant Reference to constant BYTE_ARRAY from undeclared class \MongoBinData
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:151 PhanUndeclaredClassMethod Call to method __construct from undeclared class \MongoBinData
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:155 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:171 PhanUndeclaredClassMethod Call to method findOne from undeclared class \MongoCollection
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:180 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\BSON\Binary
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:195 PhanUndeclaredClassMethod Call to method selectCollection from undeclared class \Mongo
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:226 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \MongoDB\Client
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:227 PhanUndeclaredClassMethod Call to method __construct from undeclared class \MongoDB\BSON\UTCDateTime
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php:230 PhanUndeclaredClassMethod Call to method __construct from undeclared class \MongoDate
src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php:215 PhanDeprecatedClass Call to deprecated class \Symfony\Component\Debug\Exception\ContextErrorException defined at src/Symfony/Component/Debug/Exception/ContextErrorException.php:21
src/Symfony/Component/HttpFoundation/StreamedResponse.php:45 PhanTypeMismatchArgument Argument 1 (callback) is ?callable but \Symfony\Component\HttpFoundation\StreamedResponse::setCallback() takes callable defined at src/Symfony/Component/HttpFoundation/StreamedResponse.php:70
src/Symfony/Component/HttpKernel/Bundle/Bundle.php:94 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\HttpKernel\Bundle\Bundle::extension is \Symfony\Component\DependencyInjection\Extension\ExtensionInterface|null
src/Symfony/Component/HttpKernel/Bundle/Bundle.php:137 PhanTypeMissingReturn Method \Symfony\Component\HttpKernel\Bundle\Bundle::getParent is declared to return ?string but has no return value
src/Symfony/Component/HttpKernel/Client.php:64 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::terminate
src/Symfony/Component/HttpKernel/Config/EnvParametersResource.php:41 PhanTypeMismatchProperty Assigning array|null[] to property but \Symfony\Component\HttpKernel\Config\EnvParametersResource::variables is string
src/Symfony/Component/HttpKernel/Config/EnvParametersResource.php:65 PhanTypeComparisonFromArray array to string comparison
src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php:119 PhanTypeMismatchArgumentInternal Argument 1 (name) is null but \ReflectionFunction::__construct() takes \Closure|string
src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php:122 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\HttpKernel\Controller\ControllerResolver::doGetArguments() defined at src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php:134
src/Symfony/Component/HttpKernel/Controller/TraceableControllerResolver.php:43 PhanTypeMismatchProperty Assigning \Symfony\Component\HttpKernel\Controller\ControllerResolverInterface to property but \Symfony\Component\HttpKernel\Controller\TraceableControllerResolver::argumentResolver is ?\Symfony\Component\HttpKernel\Controller\ArgumentResolverInterface
src/Symfony/Component/HttpKernel/ControllerMetadata/ArgumentMetadataFactory.php:57 PhanTypeMismatchArgumentInternal Argument 1 (name) is null but \ReflectionFunction::__construct() takes \Closure|string
src/Symfony/Component/HttpKernel/DataCollector/ConfigDataCollector.php:104 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector::data is \Symfony\Component\VarDumper\Caster\LinkStub[][]|\false[]|array|null[]|string[]|string[][]
src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php:72 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\HttpKernel\DataCollector\DataCollector::cloner is \Symfony\Component\VarDumper\Cloner\ClonerInterface|\Symfony\Component\VarDumper\Cloner\VarCloner
src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php:77 PhanDeprecatedClass Call to deprecated class \Symfony\Component\HttpKernel\DataCollector\Util\ValueExporter defined at src/Symfony/Component/HttpKernel/DataCollector/Util/ValueExporter.php:21
src/Symfony/Component/HttpKernel/DataCollector/DataCollector.php:100 PhanDeprecatedClass Call to deprecated class \Symfony\Component\HttpKernel\DataCollector\Util\ValueExporter defined at src/Symfony/Component/HttpKernel/DataCollector/Util/ValueExporter.php:21
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:191 PhanUndeclaredStaticMethod Static call to undeclared method self::__construct()
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:263 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::style defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:756
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:264 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::style defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:756
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:265 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::style defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:756
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:266 PhanNonClassMethodCall Call to method format on non-class type null
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:267 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::style defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:756
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:272 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::style defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:756
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:274 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::style defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:756
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:276 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::style
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:276 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\HttpKernel\DataCollector\DumpDataCollector->line
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:276 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\VarDumper\Dumper\DataDumperInterface->line
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:278 PhanAccessMethodProtected Cannot access protected method \Symfony\Component\VarDumper\Dumper\HtmlDumper::dumpLine defined at src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php:822
src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php:280 PhanNonClassMethodCall Call to method bindTo on non-class type callable
src/Symfony/Component/HttpKernel/DataCollector/EventDataCollector.php:47 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\EventDispatcher\EventDispatcherInterface::getCalledListeners
src/Symfony/Component/HttpKernel/DataCollector/EventDataCollector.php:48 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\EventDispatcher\EventDispatcherInterface::getNotCalledListeners
src/Symfony/Component/HttpKernel/DataCollector/EventDataCollector.php:50 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Component\HttpKernel\DataCollector\EventDataCollector::data is array
src/Symfony/Component/HttpKernel/DataCollector/LoggerDataCollector.php:51 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector::data is array
src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php:73 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag
src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php:154 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::data is array|string[]|string[][]
src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php:362 PhanTypeArraySuspicious Suspicious array access to callable
src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php:363 PhanTypeArraySuspicious Suspicious array access to callable
src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php:44 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\EventDispatcher\Event::getResponse
src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php:68 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\EventDispatcher\Event::getResponse
src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php:74 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\EventDispatcher\Event::getResponse
src/Symfony/Component/HttpKernel/DependencyInjection/AddClassesToCachePass.php:58 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\HttpKernel\Kernel::setClassCache() defined at src/Symfony/Component/HttpKernel/Kernel.php:370
src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:58 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler::rendererIds defined at src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:29
src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:67 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler::rendererIds defined at src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:29
src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:68 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler::rendererIds defined at src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:29
src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:69 PhanDeprecatedProperty Reference to deprecated property \Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler::rendererIds defined at src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:29
src/Symfony/Component/HttpKernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php:58 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\DependencyInjection\Definition::getParent
src/Symfony/Component/HttpKernel/EventListener/DebugHandlersListener.php:95 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::levels is array|int
src/Symfony/Component/HttpKernel/EventListener/ExceptionListener.php:88 PhanUndeclaredMethod Call to undeclared method \Exception::getStatusCode
src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php:91 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\HttpKernel\EventListener\ProfilerListener::exception is \Exception
src/Symfony/Component/HttpKernel/Fragment/HIncludeFragmentRenderer.php:147 PhanUndeclaredMethod Call to undeclared method \Twig_LoaderInterface::getSource
src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php:122 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\HttpFoundation\Request::getTrustedHeaderName() defined at src/Symfony/Component/HttpFoundation/Request.php:695
src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php:122 PhanTypeMismatchArgument Argument 1 (key) is int but \Symfony\Component\HttpFoundation\Request::getTrustedHeaderName() takes string defined at src/Symfony/Component/HttpFoundation/Request.php:695
src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php:223 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpKernel\HttpKernelInterface::terminate
src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php:491 PhanTypeMismatchArgumentInternal Argument 2 (time) is int but \DateTime::createFromFormat() takes string
src/Symfony/Component/HttpKernel/HttpKernel.php:56 PhanTypeMismatchProperty Assigning \Symfony\Component\HttpKernel\Controller\ControllerResolverInterface to property but \Symfony\Component\HttpKernel\HttpKernel::argumentResolver is ?\Symfony\Component\HttpKernel\Controller\ArgumentResolverInterface
src/Symfony/Component/HttpKernel/HttpKernel.php:65 PhanTypeMismatchArgument Argument 2 (values) is int but \Symfony\Component\HttpFoundation\HeaderBag::set() takes array|string defined at src/Symfony/Component/HttpFoundation/HeaderBag.php:139
src/Symfony/Component/HttpKernel/HttpKernel.php:71 PhanTypeMismatchArgument Argument 2 (previous) is \Symfony\Component\HttpFoundation\Exception\RequestExceptionInterface but \Symfony\Component\HttpKernel\Exception\BadRequestHttpException::__construct() takes ?\Exception defined at src/Symfony/Component/HttpKernel/Exception/BadRequestHttpException.php:28
src/Symfony/Component/HttpKernel/HttpKernel.php:71 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\HttpFoundation\Exception\RequestExceptionInterface::getMessage
src/Symfony/Component/HttpKernel/HttpKernel.php:247 PhanTypeMismatchArgument Argument 1 (code) is array|string but \Symfony\Component\HttpFoundation\Response::setStatusCode() takes int defined at src/Symfony/Component/HttpFoundation/Response.php:470
src/Symfony/Component/HttpKernel/Kernel.php:113 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\HttpKernel\Kernel::doLoadClassCache() defined at src/Symfony/Component/HttpKernel/Kernel.php:422
src/Symfony/Component/HttpKernel/Kernel.php:182 PhanNonClassMethodCall Call to method get on non-class type null
src/Symfony/Component/HttpKernel/Kernel.php:558 PhanNonClassMethodCall Call to method set on non-class type null
src/Symfony/Component/HttpKernel/Kernel.php:560 PhanNonClassMethodCall Call to method has on non-class type null
src/Symfony/Component/HttpKernel/Kernel.php:561 PhanNonClassMethodCall Call to method get on non-class type null
src/Symfony/Component/HttpKernel/Kernel.php:561 PhanNonClassMethodCall Call to method getParameter on non-class type null
src/Symfony/Component/HttpKernel/Kernel.php:598 PhanDeprecatedFunction Call to deprecated function \Symfony\Component\HttpKernel\Kernel::getEnvParameters() defined at src/Symfony/Component/HttpKernel/Kernel.php:611
src/Symfony/Component/HttpKernel/Kernel.php:656 PhanDeprecatedClass Call to deprecated class \Symfony\Component\HttpKernel\DependencyInjection\AddClassesToCachePass defined at src/Symfony/Component/HttpKernel/DependencyInjection/AddClassesToCachePass.php:31
src/Symfony/Component/HttpKernel/Kernel.php:742 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\DependencyInjection\Loader\XmlFileLoader::__construct() takes \Symfony\Component\DependencyInjection\ContainerBuilder defined at src/Symfony/Component/DependencyInjection/Loader/FileLoader.php:36
src/Symfony/Component/HttpKernel/Kernel.php:743 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\DependencyInjection\Loader\YamlFileLoader::__construct() takes \Symfony\Component\DependencyInjection\ContainerBuilder defined at src/Symfony/Component/DependencyInjection/Loader/FileLoader.php:36
src/Symfony/Component/HttpKernel/Kernel.php:744 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\DependencyInjection\Loader\IniFileLoader::__construct() takes \Symfony\Component\DependencyInjection\ContainerBuilder defined at src/Symfony/Component/DependencyInjection/Loader/FileLoader.php:36
src/Symfony/Component/HttpKernel/Kernel.php:745 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\DependencyInjection\Loader\PhpFileLoader::__construct() takes \Symfony\Component\DependencyInjection\ContainerBuilder defined at src/Symfony/Component/DependencyInjection/Loader/FileLoader.php:36
src/Symfony/Component/HttpKernel/Kernel.php:747 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\DependencyInjection\Loader\DirectoryLoader::__construct() takes \Symfony\Component\DependencyInjection\ContainerBuilder defined at src/Symfony/Component/DependencyInjection/Loader/FileLoader.php:36
src/Symfony/Component/HttpKernel/Kernel.php:748 PhanTypeMismatchArgument Argument 1 (container) is \Symfony\Component\DependencyInjection\ContainerInterface but \Symfony\Component\DependencyInjection\Loader\ClosureLoader::__construct() takes \Symfony\Component\DependencyInjection\ContainerBuilder defined at src/Symfony/Component/DependencyInjection/Loader/ClosureLoader.php:31
src/Symfony/Component/HttpKernel/Profiler/Profiler.php:152 PhanParamTooMany Call with 7 arg(s) to \Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface::find() which only takes 6 arg(s) defined at src/Symfony/Component/HttpKernel/Profiler/ProfilerStorageInterface.php:33
src/Symfony/Component/HttpKernel/Profiler/Profiler.php:170 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Component/Intl/Data/Bundle/Reader/BufferedBundleReader.php:51 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\Intl\Data\Bundle\Reader\BufferedBundleReader::buffer is \Symfony\Component\Intl\Data\Util\RingBuffer
src/Symfony/Component/Intl/Data/Bundle/Reader/BundleEntryReader.php:119 PhanTypeMismatchArgumentInternal Argument 2 () is null but \array_merge() takes array
src/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfYearTransformer.php:30 PhanTypeMismatchArgument Argument 1 (value) is float|int but \Symfony\Component\Intl\DateFormatter\DateFormat\DayOfYearTransformer::padLeft() takes string defined at src/Symfony/Component/Intl/DateFormatter/DateFormat/Transformer.php:62
src/Symfony/Component/Intl/DateFormatter/DateFormat/MinuteTransformer.php:30 PhanTypeMismatchArgument Argument 1 (value) is int but \Symfony\Component\Intl\DateFormatter\DateFormat\MinuteTransformer::padLeft() takes string defined at src/Symfony/Component/Intl/DateFormatter/DateFormat/Transformer.php:62
src/Symfony/Component/Intl/DateFormatter/DateFormat/QuarterTransformer.php:33 PhanTypeMismatchArgument Argument 1 (value) is int but \Symfony\Component\Intl\DateFormatter\DateFormat\QuarterTransformer::padLeft() takes string defined at src/Symfony/Component/Intl/DateFormatter/DateFormat/Transformer.php:62
src/Symfony/Component/Intl/DateFormatter/DateFormat/SecondTransformer.php:30 PhanTypeMismatchArgument Argument 1 (value) is int but \Symfony\Component\Intl\DateFormatter\DateFormat\SecondTransformer::padLeft() takes string defined at src/Symfony/Component/Intl/DateFormatter/DateFormat/Transformer.php:62
src/Symfony/Component/Intl/DateFormatter/IntlDateFormatter.php:155 PhanTypeMismatchArgument Argument 3 (argValue) is int but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/DateFormatter/IntlDateFormatter.php:206 PhanTypeMismatchArgument Argument 3 (argValue) is array but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/DateFormatter/IntlDateFormatter.php:492 PhanTypeMismatchArgument Argument 3 (argValue) is bool but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/Globals/IntlGlobals.php:67 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\Intl\Globals\IntlGlobals::errorMessage is int
src/Symfony/Component/Intl/Intl.php:94 PhanTypeMismatchProperty Assigning bool to property but \Symfony\Component\Intl\Intl::icuDataVersion is string
src/Symfony/Component/Intl/Intl.php:120 PhanTypeMismatchArgument Argument 3 (localeProvider) is \Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface|\Symfony\Component\Intl\ResourceBundle\ResourceBundleInterface but \Symfony\Component\Intl\ResourceBundle\CurrencyBundle::__construct() takes \Symfony\Component\Intl\Data\Provider\LocaleDataProvider defined at src/Symfony/Component/Intl/ResourceBundle/CurrencyBundle.php:40
src/Symfony/Component/Intl/Intl.php:138 PhanTypeMismatchArgument Argument 3 (localeProvider) is \Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface|\Symfony\Component\Intl\ResourceBundle\ResourceBundleInterface but \Symfony\Component\Intl\ResourceBundle\LanguageBundle::__construct() takes \Symfony\Component\Intl\Data\Provider\LocaleDataProvider defined at src/Symfony/Component/Intl/ResourceBundle/LanguageBundle.php:47
src/Symfony/Component/Intl/Intl.php:177 PhanTypeMismatchArgument Argument 3 (localeProvider) is \Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface|\Symfony\Component\Intl\ResourceBundle\ResourceBundleInterface but \Symfony\Component\Intl\ResourceBundle\RegionBundle::__construct() takes \Symfony\Component\Intl\Data\Provider\LocaleDataProvider defined at src/Symfony/Component/Intl/ResourceBundle/RegionBundle.php:40
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:286 PhanTypeMismatchArgument Argument 3 (argValue) is int but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:336 PhanTypeMismatchArgument Argument 1 (value) is float but \Symfony\Component\Intl\NumberFormatter\NumberFormatter::format() takes \Symfony\Component\Intl\NumberFormatter\number defined at src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:371
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:371 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Intl\NumberFormatter\number
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:389 PhanTypeMismatchArgument Argument 3 (argValue) is int but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:394 PhanTypeMismatchArgument Argument 1 (value) is \Symfony\Component\Intl\NumberFormatter\number but \Symfony\Component\Intl\NumberFormatter\NumberFormatter::round() takes float|int defined at src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:721
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:591 PhanTypeMismatchArgument Argument 3 (argValue) is int but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:600 PhanTypeMismatchArgument Argument 3 (argValue) is int but \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException::__construct() takes string defined at src/Symfony/Component/Intl/Exception/MethodArgumentValueNotImplementedException.php:27
src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:782 PhanTypeMismatchArgument Argument 1 (attr) is int but \Symfony\Component\Intl\NumberFormatter\NumberFormatter::isInitializedAttribute() takes string defined at src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php:799
src/Symfony/Component/Intl/ResourceBundle/CurrencyBundle.php:86 PhanTypeMissingReturn Method \Symfony\Component\Intl\ResourceBundle\CurrencyBundle::getFractionDigits is declared to return mixed but has no return value
src/Symfony/Component/Intl/ResourceBundle/CurrencyBundle.php:98 PhanTypeMissingReturn Method \Symfony\Component\Intl\ResourceBundle\CurrencyBundle::getRoundingIncrement is declared to return mixed but has no return value
src/Symfony/Component/Intl/ResourceBundle/LanguageBundle.php:91 PhanTypeMissingReturn Method \Symfony\Component\Intl\ResourceBundle\LanguageBundle::getScriptName is declared to return mixed but has no return value
src/Symfony/Component/Intl/Resources/bin/update-data.php:75 PhanTypeMismatchArgument Argument 1 (version1) is int but \Symfony\Component\Intl\Util\IcuVersion::compare() takes string defined at src/Symfony/Component/Intl/Util/IcuVersion.php:56
src/Symfony/Component/Intl/Resources/bin/update-data.php:209 PhanTypeMismatchArgument Argument 1 (locale) is null but \Symfony\Component\Intl\Locale::setDefaultFallback() takes string defined at src/Symfony/Component/Intl/Locale.php:38
src/Symfony/Component/Intl/Resources/stubs/Collator.php:19 PhanRedefineClassInternal Class \Collator defined at src/Symfony/Component/Intl/Resources/stubs/Collator.php:19 was previously defined as Class \Collator internally
src/Symfony/Component/Intl/Resources/stubs/IntlDateFormatter.php:21 PhanRedefineClassInternal Class \IntlDateFormatter defined at src/Symfony/Component/Intl/Resources/stubs/IntlDateFormatter.php:21 was previously defined as Class \IntlDateFormatter internally
src/Symfony/Component/Intl/Resources/stubs/Locale.php:21 PhanRedefineClassInternal Class \Locale defined at src/Symfony/Component/Intl/Resources/stubs/Locale.php:21 was previously defined as Class \Locale internally
src/Symfony/Component/Intl/Resources/stubs/NumberFormatter.php:21 PhanRedefineClassInternal Class \NumberFormatter defined at src/Symfony/Component/Intl/Resources/stubs/NumberFormatter.php:21 was previously defined as Class \NumberFormatter internally
src/Symfony/Component/Intl/Util/SvnCommit.php:44 PhanTypeArraySuspicious Suspicious array access to \SimpleXMLElement
src/Symfony/Component/Ldap/Adapter/ExtLdap/Adapter.php:53 PhanDeprecatedInterface Using a deprecated interface \Symfony\Component\Ldap\Adapter\RenameEntryInterface defined at src/Symfony/Component/Ldap/Adapter/RenameEntryInterface.php:12
src/Symfony/Component/Ldap/Adapter/ExtLdap/Collection.php:38 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Ldap/Adapter/ExtLdap/Collection.php:107 PhanTypeComparisonToArray bool to array comparison
src/Symfony/Component/Ldap/Adapter/ExtLdap/Connection.php:148 PhanUndeclaredFunction Call to undeclared function \ldap_close()
src/Symfony/Component/Ldap/Adapter/ExtLdap/Connection.php:151 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Ldap\Adapter\ExtLdap\Connection::connection is resource
src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php:78 PhanTypeMismatchArgumentInternal Argument 4 (newparent) is null but \ldap_rename() takes string
src/Symfony/Component/Ldap/Adapter/ExtLdap/Query.php:38 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Ldap\Adapter\ExtLdap\Query::connection is \Symfony\Component\Ldap\Adapter\ExtLdap\Connection
src/Symfony/Component/Ldap/Adapter/ExtLdap/Query.php:45 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Ldap\Adapter\ExtLdap\Query::search is resource
src/Symfony/Component/Lock/Store/MemcachedStore.php:40 PhanUndeclaredTypeParameter Parameter of undeclared type \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:61 PhanUndeclaredClassMethod Call to method add from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:91 PhanUndeclaredClassConstant Reference to constant RES_NOTFOUND from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:91 PhanUndeclaredClassMethod Call to method getResultCode from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:92 PhanUndeclaredClassMethod Call to method add from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:105 PhanUndeclaredClassMethod Call to method cas from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:125 PhanUndeclaredClassMethod Call to method cas from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:131 PhanUndeclaredClassMethod Call to method delete from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:139 PhanUndeclaredClassMethod Call to method get from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:166 PhanUndeclaredClassConstant Reference to constant GET_EXTENDED from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:166 PhanUndeclaredClassMethod Call to method get from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:167 PhanUndeclaredClassConstant Reference to constant GET_ERROR_RETURN_VALUE from undeclared class \Memcached
src/Symfony/Component/Lock/Store/MemcachedStore.php:175 PhanUndeclaredClassMethod Call to method get from undeclared class \Memcached
src/Symfony/Component/Lock/Store/RedisStore.php:33 PhanUndeclaredTypeParameter Parameter of undeclared type \Redis
src/Symfony/Component/Lock/Store/RedisStore.php:33 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisArray
src/Symfony/Component/Lock/Store/RedisStore.php:33 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisCluster
src/Symfony/Component/Lock/Store/RedisStore.php:35 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \Redis
src/Symfony/Component/Lock/Store/RedisStore.php:35 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisArray
src/Symfony/Component/Lock/Store/RedisStore.php:35 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisCluster
src/Symfony/Component/Lock/Store/RedisStore.php:111 PhanUndeclaredClassMethod Call to method get from undeclared class \Redis
src/Symfony/Component/Lock/Store/RedisStore.php:125 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \Redis
src/Symfony/Component/Lock/Store/RedisStore.php:125 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisCluster
src/Symfony/Component/Lock/Store/RedisStore.php:126 PhanUndeclaredClassMethod Call to method eval from undeclared class \Redis
src/Symfony/Component/Lock/Store/RedisStore.php:129 PhanUndeclaredClassInstanceof Checking instanceof against undeclared class \RedisArray
src/Symfony/Component/Lock/Store/RedisStore.php:130 PhanUndeclaredClassMethod Call to method _instance from undeclared class \Redis
src/Symfony/Component/Lock/Store/RedisStore.php:130 PhanUndeclaredClassMethod Call to method _target from undeclared class \Redis
src/Symfony/Component/OptionsResolver/OptionsResolver.php:167 PhanUndeclaredVariable Variable $class is undeclared
src/Symfony/Component/Process/InputStream.php:40 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Process\scalar
src/Symfony/Component/Process/PhpExecutableFinder.php:70 PhanTypeMismatchArgument Argument 2 (default) is bool but \Symfony\Component\Process\ExecutableFinder::find() takes string defined at src/Symfony/Component/Process/ExecutableFinder.php:53
src/Symfony/Component/Process/Pipes/AbstractPipes.php:29 PhanUndeclaredTypeProperty Property \Symfony\Component\Process\Pipes\AbstractPipes::input has undeclared type \Symfony\Component\Process\Pipes\scalar
src/Symfony/Component/Process/Pipes/AbstractPipes.php:78 PhanTypeMismatchArgumentInternal Argument 2 (mode) is int but \stream_set_blocking() takes bool
src/Symfony/Component/Process/Pipes/AbstractPipes.php:81 PhanTypeMismatchArgumentInternal Argument 2 (mode) is int but \stream_set_blocking() takes bool
src/Symfony/Component/Process/Pipes/AbstractPipes.php:103 PhanTypeMismatchArgumentInternal Argument 2 (mode) is int but \stream_set_blocking() takes bool
src/Symfony/Component/Process/Pipes/AbstractPipes.php:112 PhanUndeclaredClassMethod Call to method next from undeclared class \Symfony\Component\Process\Pipes\scalar
src/Symfony/Component/Process/Pipes/AbstractPipes.php:152 PhanUndeclaredClassMethod Call to method next from undeclared class \Symfony\Component\Process\Pipes\scalar
src/Symfony/Component/Process/Pipes/AbstractPipes.php:161 PhanUndeclaredClassMethod Call to method valid from undeclared class \Symfony\Component\Process\Pipes\scalar
src/Symfony/Component/Process/Pipes/WindowsPipes.php:67 PhanTypeMismatchArgumentInternal Argument 1 (dir) is bool but \tempnam() takes string
src/Symfony/Component/Process/Pipes/WindowsPipes.php:139 PhanTypeMismatchArgumentInternal Argument 5 (tv_usec) is float but \stream_select() takes int|null
src/Symfony/Component/Process/Pipes/WindowsPipes.php:141 PhanTypeMismatchArgumentInternal Argument 1 (micro_seconds) is float but \usleep() takes int
src/Symfony/Component/Process/Process.php:165 PhanTypeMismatchArgument Argument 1 (env) is ?array but \Symfony\Component\Process\Process::setEnv() takes array defined at src/Symfony/Component/Process/Process.php:1137
src/Symfony/Component/Process/Process.php:165 PhanTypeMismatchArgument Argument 1 (env) is ?array|null but \Symfony\Component\Process\Process::setEnv() takes array defined at src/Symfony/Component/Process/Process.php:1137
src/Symfony/Component/Process/Process.php:175 PhanTypeMismatchArgumentInternal Argument 2 (arr2) is ?array but \array_replace() takes array
src/Symfony/Component/Process/Process.php:175 PhanTypeMismatchArgumentInternal Argument 2 (arr2) is ?array|null but \array_replace() takes array
src/Symfony/Component/Process/Process.php:242 PhanTypeMismatchArgument Argument 1 (callback) is ?callable but \Symfony\Component\Process\Process::run() takes callable|null defined at src/Symfony/Component/Process/Process.php:211
src/Symfony/Component/Process/Process.php:288 PhanTypeMismatchProperty Assigning \Closure to property but \Symfony\Component\Process\Process::callback is null
src/Symfony/Component/Process/Process.php:329 PhanTypeMismatchProperty Assigning \false|resource to property but \Symfony\Component\Process\Process::process is null
src/Symfony/Component/Process/Process.php:409 PhanTypeMismatchProperty Assigning \Closure to property but \Symfony\Component\Process\Process::callback is null
src/Symfony/Component/Process/Process.php:1170 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Process\scalar
src/Symfony/Component/Process/Process.php:1396 PhanTypeMismatchArgumentInternal Argument 1 (function) is ?callable but \call_user_func() takes callable
src/Symfony/Component/Process/Process.php:1411 PhanTypeMismatchArgumentInternal Argument 1 (function) is ?callable but \call_user_func() takes callable
src/Symfony/Component/Process/Process.php:1564 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Process\Process::processInformation is array|bool[]|int[]
src/Symfony/Component/Process/Process.php:1568 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Process\Process::latestSignal is int
src/Symfony/Component/Process/ProcessBuilder.php:180 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Process\scalar
src/Symfony/Component/Process/ProcessBuilder.php:201 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Process\ProcessBuilder::timeout is int
src/Symfony/Component/Process/ProcessBuilder.php:212 PhanTypeMismatchProperty Assigning float to property but \Symfony\Component\Process\ProcessBuilder::timeout is int
src/Symfony/Component/PropertyAccess/PropertyAccessor.php:199 PhanTypeMismatchProperty Assigning null|string to property but \Symfony\Component\PropertyAccess\PropertyAccessor::previousErrorHandler is bool
src/Symfony/Component/PropertyAccess/PropertyAccessor.php:264 PhanTypeMismatchArgumentInternal Argument 1 (function) is bool but \call_user_func() takes callable
src/Symfony/Component/PropertyAccess/PropertyPathIterator.php:46 PhanTypeMismatchArgument Argument 1 (index) is \scalar but \Symfony\Component\PropertyAccess\PropertyPathInterface::isIndex() takes int defined at src/Symfony/Component/PropertyAccess/PropertyPathInterface.php:85
src/Symfony/Component/PropertyAccess/PropertyPathIterator.php:54 PhanTypeMismatchArgument Argument 1 (index) is \scalar but \Symfony\Component\PropertyAccess\PropertyPathInterface::isProperty() takes int defined at src/Symfony/Component/PropertyAccess/PropertyPathInterface.php:74
src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php:51 PhanUndeclaredMethod Call to undeclared method \phpDocumentor\Reflection\Type::has
src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php:52 PhanUndeclaredMethod Call to undeclared method \phpDocumentor\Reflection\Type::get
src/Symfony/Component/Routing/Generator/UrlGenerator.php:261 PhanTypeMismatchArgumentInternal Argument 3 () is callable but \array_udiff_assoc() takes array
src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php:426 PhanTypeMismatchArgument Argument 1 (cache) is null but \Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct() takes \Psr\Cache\CacheItemPoolInterface defined at src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php:40
src/Symfony/Component/Routing/Matcher/RedirectableUrlMatcher.php:37 PhanTypeMismatchArgument Argument 2 (route) is null but \Symfony\Component\Routing\Matcher\RedirectableUrlMatcher::redirect() takes string defined at src/Symfony/Component/Routing/Matcher/RedirectableUrlMatcherInterface.php:30
src/Symfony/Component/Routing/Matcher/TraceableUrlMatcher.php:48 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Routing\Matcher\TraceableUrlMatcher::request is \Symfony\Component\HttpFoundation\Request
src/Symfony/Component/Routing/Matcher/UrlMatcher.php:110 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Routing\Matcher\UrlMatcher::request is \Symfony\Component\HttpFoundation\Request
src/Symfony/Component/Routing/Matcher/UrlMatcher.php:246 PhanTypeMismatchArgument Argument 1 (cache) is null but \Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct() takes \Psr\Cache\CacheItemPoolInterface defined at src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php:40
src/Symfony/Component/Routing/RouteCollectionBuilder.php:372 PhanTypeMismatchArgument Argument 2 (sourceResource) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes string defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Routing/RouteCollectionBuilder.php:372 PhanTypeMismatchArgument Argument 3 (code) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes int defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Routing/RouteCollectionBuilder.php:372 PhanTypeMismatchArgument Argument 4 (previous) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes \Exception defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Routing/RouteCollectionBuilder.php:376 PhanTypeMismatchArgument Argument 2 (sourceResource) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes string defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Routing/RouteCollectionBuilder.php:376 PhanTypeMismatchArgument Argument 3 (code) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes int defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Routing/RouteCollectionBuilder.php:376 PhanTypeMismatchArgument Argument 4 (previous) is null but \Symfony\Component\Config\Exception\FileLoaderLoadException::__construct() takes \Exception defined at src/Symfony/Component/Config/Exception/FileLoaderLoadException.php:28
src/Symfony/Component/Routing/RouteCompiler.php:161 PhanTypeMismatchArgument Argument 2 (useUtf8) is int but \Symfony\Component\Routing\RouteCompiler::findNextSeparator() takes bool defined at src/Symfony/Component/Routing/RouteCompiler.php:264
src/Symfony/Component/Routing/Router.php:284 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Routing\Matcher\UrlMatcherInterface::addExpressionLanguageProvider
src/Symfony/Component/Routing/Router.php:296 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Routing\Matcher\Dumper\MatcherDumperInterface::addExpressionLanguageProvider
src/Symfony/Component/Routing/Router.php:347 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Routing\Generator\UrlGeneratorInterface::setStrictRequirements
src/Symfony/Component/Security/Core/Authentication/Provider/AnonymousAuthenticationProvider.php:52 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getSecret
src/Symfony/Component/Security/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php:78 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getProviderKey
src/Symfony/Component/Security/Core/Authentication/Provider/RememberMeAuthenticationProvider.php:48 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getSecret
src/Symfony/Component/Security/Core/Authentication/Provider/RememberMeAuthenticationProvider.php:66 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getProviderKey
src/Symfony/Component/Security/Core/Authentication/Provider/UserAuthenticationProvider.php:70 PhanTypeMismatchArgument Argument 2 (token) is \Serializable|\Symfony\Component\Security\Core\Authentication\Token\TokenInterface|string but \Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider::retrieveUser() takes \Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken defined at src/Symfony/Component/Security/Core/Authentication/Provider/UserAuthenticationProvider.php:143
src/Symfony/Component/Security/Core/Authentication/Provider/UserAuthenticationProvider.php:86 PhanTypeMismatchArgument Argument 2 (token) is \Serializable|\Symfony\Component\Security\Core\Authentication\Token\TokenInterface|string but \Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider::checkAuthentication() takes \Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken defined at src/Symfony/Component/Security/Core/Authentication/Provider/UserAuthenticationProvider.php:154
src/Symfony/Component/Security/Core/Authentication/Provider/UserAuthenticationProvider.php:107 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getProviderKey
src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php:44 PhanDeprecatedInterface Using a deprecated interface \Symfony\Component\Security\Core\Role\RoleInterface defined at src/Symfony/Component/Security/Core/Role/RoleInterface.php:24
src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php:251 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\User\UserInterface::isEqualTo
src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php:267 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\User\UserInterface::isAccountNonExpired
src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php:271 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\User\UserInterface::isAccountNonLocked
src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php:275 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\User\UserInterface::isCredentialsNonExpired
src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php:279 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\User\UserInterface::isEnabled
src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php:86 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken::credentials is string
src/Symfony/Component/Security/Core/Authorization/ExpressionLanguage.php:31 PhanTypeMismatchArgument Argument 1 (cache) is ?\Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface|\Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface but \Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct() takes \Psr\Cache\CacheItemPoolInterface defined at src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php:40
src/Symfony/Component/Security/Core/Authorization/ExpressionLanguage.php:31 PhanTypeMismatchArgument Argument 1 (cache) is ?\Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface|\Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface|null but \Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct() takes \Psr\Cache\CacheItemPoolInterface defined at src/Symfony/Component/ExpressionLanguage/ExpressionLanguage.php:40
src/Symfony/Component/Security/Core/Authorization/TraceableAccessDecisionManager.php:76 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface::setVoters
src/Symfony/Component/Security/Core/Authorization/TraceableAccessDecisionManager.php:107 PhanUndeclaredClassConstant Reference to constant class from undeclared class \Symfony\Component\Security\Core\Authorization\DebugAccessDecisionManager
src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php:44 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\Security\Core\Encoder\BCryptPasswordEncoder::cost is string
src/Symfony/Component/Security/Core/Role/RoleHierarchy.php:48 PhanDeprecatedInterface Using a deprecated interface \Symfony\Component\Security\Core\Role\RoleInterface defined at src/Symfony/Component/Security/Core/Role/RoleInterface.php:24
src/Symfony/Component/Security/Guard/Authenticator/AbstractFormLoginAuthenticator.php:84 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Guard\Authenticator\AbstractFormLoginAuthenticator::getDefaultSuccessRedirectUrl
src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationFailureHandler.php:34 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface::setOptions
src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationSuccessHandler.php:35 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface::setOptions
src/Symfony/Component/Security/Http/Authentication/CustomAuthenticationSuccessHandler.php:38 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface::setProviderKey
src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php:63 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface::onAuthenticationSuccess
src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php:90 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface::onAuthenticationFailure
src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php:106 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\Authentication\SimplePreAuthenticatorInterface::onAuthenticationFailure
src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php:118 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Http\Authentication\SimplePreAuthenticatorInterface::onAuthenticationSuccess
src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php:165 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Security\Core\Authentication\Token\AnonymousToken::getProviderKey
src/Symfony/Component/Security/Http/ParameterBagUtils.php:39 PhanTypeMissingReturn Method \Symfony\Component\Security\Http\ParameterBagUtils::getParameterBagValue is declared to return mixed but has no return value
src/Symfony/Component/Security/Http/ParameterBagUtils.php:74 PhanTypeMissingReturn Method \Symfony\Component\Security\Http\ParameterBagUtils::getRequestParameterValue is declared to return mixed but has no return value
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:53 PhanTypeMismatchArgument Argument 1 (key) is bool but \Symfony\Component\HttpFoundation\ParameterBag::get() takes string defined at src/Symfony/Component/HttpFoundation/ParameterBag.php:86
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:85 PhanTypeMismatchArgument Argument 1 (name) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:85 PhanTypeMismatchArgument Argument 4 (path) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:85 PhanTypeMismatchArgument Argument 5 (domain) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes null|string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:118 PhanTypeMismatchArgument Argument 1 (name) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:118 PhanTypeMismatchArgument Argument 4 (path) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php:118 PhanTypeMismatchArgument Argument 5 (domain) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes null|string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/TokenBasedRememberMeServices.php:78 PhanTypeMismatchArgument Argument 1 (name) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/TokenBasedRememberMeServices.php:78 PhanTypeMismatchArgument Argument 4 (path) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Security/Http/RememberMe/TokenBasedRememberMeServices.php:78 PhanTypeMismatchArgument Argument 5 (domain) is bool but \Symfony\Component\HttpFoundation\Cookie::__construct() takes null|string defined at src/Symfony/Component/HttpFoundation/Cookie.php:98
src/Symfony/Component/Serializer/Encoder/CsvEncoder.php:76 PhanTypeComparisonFromArray array to null comparison
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:112 PhanNonClassMethodCall Call to method hasChildNodes on non-class type null
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:122 PhanTypeMismatchArgument Argument 1 (node) is null but \Symfony\Component\Serializer\Encoder\XmlEncoder::parseXml() takes \DOMNode defined at src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:264
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:125 PhanTypeMismatchArgument Argument 1 (node) is null but \Symfony\Component\Serializer\Encoder\XmlEncoder::parseXml() takes \DOMNode defined at src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:264
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:128 PhanNonClassMethodCall Call to method hasAttributes on non-class type null
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:380 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::supportsNormalization
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:385 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::normalize
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:387 PhanUndeclaredMethod Call to undeclared method \DOMNode::setAttribute
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:415 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::normalize
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:491 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::normalize
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:499 PhanTypeMismatchArgument Argument 2 (val) is int but \Symfony\Component\Serializer\Encoder\XmlEncoder::appendText() takes string defined at src/Symfony/Component/Serializer/Encoder/XmlEncoder.php:204
src/Symfony/Component/Serializer/Mapping/Loader/YamlFileLoader.php:41 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Serializer/NameConverter/CamelCaseToSnakeCaseNameConverter.php:37 PhanTypeMismatchProperty Assigning ?array to property but \Symfony\Component\Serializer\NameConverter\CamelCaseToSnakeCaseNameConverter::attributes is array|null
src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php:357 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::denormalize
src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php:98 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::normalize
src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php:251 PhanUndeclaredVariable Variable $collectionValueType is undeclared
src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php:271 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::supportsDenormalization
src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php:272 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::denormalize
src/Symfony/Component/Serializer/Normalizer/ArrayDenormalizer.php:74 PhanParamTooMany Call with 4 arg(s) to \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() which only takes 3 arg(s) defined at src/Symfony/Component/Serializer/Normalizer/DenormalizerInterface.php:42
src/Symfony/Component/Serializer/Normalizer/DenormalizableInterface.php:39 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\Serializer\Normalizer\scalar
src/Symfony/Component/Serializer/Normalizer/JsonSerializableNormalizer.php:41 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Serializer\SerializerInterface::normalize
src/Symfony/Component/Serializer/Normalizer/PropertyNormalizer.php:80 PhanTypeMismatchArgumentInternal Argument 1 (object) is null but \get_class() takes object
src/Symfony/Component/Serializer/Serializer.php:231 PhanParamTooMany Call with 3 arg(s) to \Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization() which only takes 2 arg(s) defined at src/Symfony/Component/Serializer/Normalizer/NormalizerInterface.php:40
src/Symfony/Component/Serializer/Serializer.php:250 PhanParamTooMany Call with 4 arg(s) to \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() which only takes 3 arg(s) defined at src/Symfony/Component/Serializer/Normalizer/DenormalizerInterface.php:42
src/Symfony/Component/Stopwatch/Stopwatch.php:33 PhanTypeMismatchArgument Argument 1 (origin) is string but \Symfony\Component\Stopwatch\Section::__construct() takes float|null defined at src/Symfony/Component/Stopwatch/Section.php:46
src/Symfony/Component/Stopwatch/StopwatchEvent.php:100 PhanTypeMismatchArgument Argument 2 (end) is float but \Symfony\Component\Stopwatch\StopwatchPeriod::__construct() takes int defined at src/Symfony/Component/Stopwatch/StopwatchPeriod.php:31
src/Symfony/Component/Stopwatch/StopwatchEvent.php:180 PhanTypeMismatchArgument Argument 2 (end) is float but \Symfony\Component\Stopwatch\StopwatchPeriod::__construct() takes int defined at src/Symfony/Component/Stopwatch/StopwatchPeriod.php:31
src/Symfony/Component/Templating/PhpEngine.php:87 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Templating\Helper\HelperInterface::get
src/Symfony/Component/Templating/PhpEngine.php:88 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Templating\Helper\HelperInterface::set
src/Symfony/Component/Templating/PhpEngine.php:92 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Templating\Helper\HelperInterface::set
src/Symfony/Component/Templating/PhpEngine.php:149 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Templating\PhpEngine::evalParameters is array
src/Symfony/Component/Templating/PhpEngine.php:154 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Templating\PhpEngine::evalTemplate is \Symfony\Component\Templating\Storage\Storage
src/Symfony/Component/Templating/PhpEngine.php:159 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Templating\PhpEngine::evalParameters is array
src/Symfony/Component/Templating/PhpEngine.php:164 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Templating\PhpEngine::evalTemplate is \Symfony\Component\Templating\Storage\Storage
src/Symfony/Component/Templating/PhpEngine.php:229 PhanTypeMismatchArgument Argument 2 (alias) is null but \Symfony\Component\Templating\PhpEngine::set() takes string defined at src/Symfony/Component/Templating/PhpEngine.php:250
src/Symfony/Component/Translation/Catalogue/MergeOperation.php:39 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\MessageCatalogueInterface::getMetadata
src/Symfony/Component/Translation/Catalogue/MergeOperation.php:49 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\MessageCatalogueInterface::getMetadata
src/Symfony/Component/Translation/Catalogue/TargetOperation.php:50 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\MessageCatalogueInterface::getMetadata
src/Symfony/Component/Translation/Catalogue/TargetOperation.php:63 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\MessageCatalogueInterface::getMetadata
src/Symfony/Component/Translation/DataCollector/TranslationDataCollector.php:48 PhanTypeMismatchProperty Assigning \Symfony\Component\VarDumper\Cloner\Data to property but \Symfony\Component\Translation\DataCollector\TranslationDataCollector::data is array|int[]|int[][][]|int[][][][]|int[][][][][]|null[][]|null[][][][]
src/Symfony/Component/Translation/DataCollectorTranslator.php:101 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\TranslatorInterface::getFallbackLocales
src/Symfony/Component/Translation/LoggingTranslator.php:100 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\TranslatorInterface::getFallbackLocales
src/Symfony/Component/Translation/MessageCatalogue.php:188 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Translation\MessageCatalogueInterface->parent
src/Symfony/Component/Translation/Writer/TranslationWriter.php:51 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Translation\Dumper\DumperInterface::setBackup
src/Symfony/Component/Validator/Constraint.php:246 PhanTypeMissingReturn Method \Symfony\Component\Validator\Constraint::getDefaultOption is declared to return string but has no return value
src/Symfony/Component/Validator/Constraint.php:304 PhanNoopProperty Unused property
src/Symfony/Component/Validator/Constraints/CountValidator.php:40 PhanTypeMismatchArgument Argument 2 (value) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setParameter() takes string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:46
src/Symfony/Component/Validator/Constraints/CountValidator.php:52 PhanTypeMismatchArgument Argument 2 (value) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setParameter() takes string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:46
src/Symfony/Component/Validator/Constraints/EmailValidator.php:73 PhanParamTooMany Call with 3 arg(s) to \Egulias\EmailValidator\EmailValidator::isValid() which only takes 2 arg(s) defined at vendor/egulias/email-validator/EmailValidator/EmailValidator.php:35
src/Symfony/Component/Validator/Constraints/EmailValidator.php:73 PhanTypeMismatchArgument Argument 2 (emailValidation) is bool but \Egulias\EmailValidator\EmailValidator::isValid() takes \Egulias\EmailValidator\Validation\EmailValidation defined at vendor/egulias/email-validator/EmailValidator/EmailValidator.php:35
src/Symfony/Component/Validator/Constraints/FileValidator.php:73 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:79 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:85 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:91 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:97 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:103 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:109 PhanTypeMismatchArgument Argument 1 (code) is int but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setCode() takes null|string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:99
src/Symfony/Component/Validator/Constraints/FileValidator.php:170 PhanTypeMismatchArgument Argument 1 (path) is \SplFileInfo|\Symfony\Component\HttpFoundation\File\File|\Symfony\Component\HttpFoundation\File\UploadedFile but \Symfony\Component\HttpFoundation\File\File::__construct() takes string defined at src/Symfony/Component/HttpFoundation/File/File.php:34
src/Symfony/Component/Validator/Constraints/FileValidator.php:199 PhanTypeMismatchArgumentInternal Argument 1 (number) is string but \round() takes float
src/Symfony/Component/Validator/Constraints/FileValidator.php:199 PhanTypeMismatchArgumentInternal Argument 1 (string) is float but \strlen() takes string
src/Symfony/Component/Validator/Constraints/ImageValidator.php:139 PhanTypeMismatchArgument Argument 2 (value) is float but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setParameter() takes string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:46
src/Symfony/Component/Validator/Constraints/ImageValidator.php:153 PhanTypeMismatchArgument Argument 2 (value) is float but \Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface::setParameter() takes string defined at src/Symfony/Component/Validator/Violation/ConstraintViolationBuilderInterface.php:46
src/Symfony/Component/Validator/Constraints/LocaleValidator.php:45 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface::getAliases
src/Symfony/Component/Validator/Constraints/LuhnValidator.php:86 PhanTypeMismatchArgumentInternal Argument 1 (str) is float|int but \str_split() takes string
src/Symfony/Component/Validator/Context/ExecutionContext.php:282 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\MetadataInterface::getClassName
src/Symfony/Component/Validator/Context/ExecutionContext.php:290 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\MetadataInterface::getPropertyName
src/Symfony/Component/Validator/Mapping/ClassMetadata.php:351 PhanUnanalyzable Expression is unanalyzable or feature is unimplemented. Please create an issue at https://github.com/etsy/phan/issues/new.
src/Symfony/Component/Validator/Mapping/ClassMetadata.php:352 PhanUndeclaredProperty Reference to undeclared property \Symfony\Component\Validator\Mapping\PropertyMetadataInterface->constraintsByGroup
src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php:45 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php:67 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Validator/Mapping/PropertyMetadata.php:61 PhanTypeMismatchArgumentInternal Argument 1 (object) is null but \get_class() takes object
src/Symfony/Component/Validator/Mapping/PropertyMetadata.php:63 PhanTypeMismatchArgumentInternal Argument 1 (object_or_class) is null but \property_exists() takes object|string
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:92 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Validator\Test\ConstraintValidatorTestCase::defaultTimezone is string
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:102 PhanTypeMismatchArgument Argument 1 (validator) is \PHPUnit_Framework_MockObject_MockObject but \Symfony\Component\Validator\Context\ExecutionContext::__construct() takes \Symfony\Component\Validator\Validator\ValidatorInterface defined at src/Symfony/Component/Validator/Context/ExecutionContext.php:144
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:102 PhanTypeMismatchArgument Argument 3 (translator) is \PHPUnit_Framework_MockObject_MockObject but \Symfony\Component\Validator\Context\ExecutionContext::__construct() takes \Symfony\Component\Translation\TranslatorInterface defined at src/Symfony/Component/Validator/Context/ExecutionContext.php:144
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:109 PhanTypeMismatchArgument Argument 1 (arguments) is \Symfony\Component\Validator\Context\ExecutionContext|\Symfony\Component\Validator\Context\ExecutionContextInterface but \PHPUnit_Framework_MockObject_Builder_InvocationMocker::with() takes array defined at vendor/phpunit/phpunit-mock-objects/src/Builder/InvocationMocker.php:228
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:163 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Validator\ContextualValidatorInterface::expects
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:165 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Validator\ContextualValidatorInterface::expects
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:172 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Validator\ContextualValidatorInterface::expects
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:176 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Validator\ContextualValidatorInterface::expects
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:184 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Validator\ContextualValidatorInterface::expects
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:188 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Validator\ContextualValidatorInterface::expects
src/Symfony/Component/Validator/Test/ConstraintValidatorTestCase.php:331 PhanTypeMismatchArgument Argument 1 (message) is null but \Symfony\Component\Validator\ConstraintViolation::__construct() takes string defined at src/Symfony/Component/Validator/ConstraintViolation.php:91
src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php:117 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Context\ExecutionContextInterface::getConstraint
src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php:148 PhanTypeMismatchArgument Argument 1 (constraint) is null but \Symfony\Component\Validator\Context\ExecutionContextInterface::setConstraint() takes \Symfony\Component\Validator\Constraint defined at src/Symfony/Component/Validator/Context/ExecutionContextInterface.php:156
src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php:210 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\MetadataInterface::getPropertyMetadata
src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php:259 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\Validator\Mapping\MetadataInterface::getPropertyMetadata
src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php:361 PhanTypeMismatchArgument Argument 3 (metadata) is \Symfony\Component\Validator\Mapping\MetadataInterface but \Symfony\Component\Validator\Validator\RecursiveContextualValidator::validateClassNode() takes ?\Symfony\Component\Validator\Mapping\ClassMetadataInterface defined at src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php:484
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:24 PhanUndeclaredConstant Reference to undeclared constant \AMQP_DURABLE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:25 PhanUndeclaredConstant Reference to undeclared constant \AMQP_PASSIVE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:26 PhanUndeclaredConstant Reference to undeclared constant \AMQP_EXCLUSIVE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:27 PhanUndeclaredConstant Reference to undeclared constant \AMQP_AUTODELETE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:28 PhanUndeclaredConstant Reference to undeclared constant \AMQP_INTERNAL
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:29 PhanUndeclaredConstant Reference to undeclared constant \AMQP_NOLOCAL
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:30 PhanUndeclaredConstant Reference to undeclared constant \AMQP_AUTOACK
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:31 PhanUndeclaredConstant Reference to undeclared constant \AMQP_IFEMPTY
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:32 PhanUndeclaredConstant Reference to undeclared constant \AMQP_IFUNUSED
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:33 PhanUndeclaredConstant Reference to undeclared constant \AMQP_MANDATORY
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:34 PhanUndeclaredConstant Reference to undeclared constant \AMQP_IMMEDIATE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:35 PhanUndeclaredConstant Reference to undeclared constant \AMQP_MULTIPLE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:36 PhanUndeclaredConstant Reference to undeclared constant \AMQP_NOWAIT
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:37 PhanUndeclaredConstant Reference to undeclared constant \AMQP_REQUEUE
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:41 PhanUndeclaredConstant Reference to undeclared constant \AMQP_EX_TYPE_DIRECT
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:42 PhanUndeclaredConstant Reference to undeclared constant \AMQP_EX_TYPE_FANOUT
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:43 PhanUndeclaredConstant Reference to undeclared constant \AMQP_EX_TYPE_TOPIC
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:44 PhanUndeclaredConstant Reference to undeclared constant \AMQP_EX_TYPE_HEADERS
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:47 PhanUndeclaredTypeParameter Parameter of undeclared type \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:52 PhanUndeclaredClassMethod Call to method isConnected from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:62 PhanUndeclaredClassMethod Call to method getReadTimeout from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:64 PhanUndeclaredClassMethod Call to method getTimeout from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:68 PhanUndeclaredClassMethod Call to method isConnected from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:69 PhanUndeclaredClassMethod Call to method getLogin from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:70 PhanUndeclaredClassMethod Call to method getPassword from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:71 PhanUndeclaredClassMethod Call to method getHost from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:72 PhanUndeclaredClassMethod Call to method getVhost from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:73 PhanUndeclaredClassMethod Call to method getPort from undeclared class \AMQPConnection
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:80 PhanUndeclaredTypeParameter Parameter of undeclared type \AMQPChannel
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:85 PhanUndeclaredClassMethod Call to method isConnected from undeclared class \AMQPChannel
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:86 PhanUndeclaredClassMethod Call to method getChannelId from undeclared class \AMQPChannel
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:95 PhanUndeclaredClassMethod Call to method getConnection from undeclared class \AMQPChannel
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:96 PhanUndeclaredClassMethod Call to method getPrefetchSize from undeclared class \AMQPChannel
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:97 PhanUndeclaredClassMethod Call to method getPrefetchCount from undeclared class \AMQPChannel
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:103 PhanUndeclaredTypeParameter Parameter of undeclared type \AMQPQueue
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:108 PhanUndeclaredClassMethod Call to method getFlags from undeclared class \AMQPQueue
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:117 PhanUndeclaredClassMethod Call to method getConnection from undeclared class \AMQPQueue
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:118 PhanUndeclaredClassMethod Call to method getChannel from undeclared class \AMQPQueue
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:119 PhanUndeclaredClassMethod Call to method getName from undeclared class \AMQPQueue
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:120 PhanUndeclaredClassMethod Call to method getArguments from undeclared class \AMQPQueue
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:126 PhanUndeclaredTypeParameter Parameter of undeclared type \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:131 PhanUndeclaredClassMethod Call to method getFlags from undeclared class \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:134 PhanUndeclaredClassMethod Call to method getType from undeclared class \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:144 PhanUndeclaredClassMethod Call to method getConnection from undeclared class \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:145 PhanUndeclaredClassMethod Call to method getChannel from undeclared class \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:146 PhanUndeclaredClassMethod Call to method getName from undeclared class \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:148 PhanUndeclaredClassMethod Call to method getArguments from undeclared class \AMQPExchange
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:154 PhanUndeclaredTypeParameter Parameter of undeclared type \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:158 PhanUndeclaredClassMethod Call to method getDeliveryMode from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:168 PhanUndeclaredClassMethod Call to method getBody from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:172 PhanUndeclaredClassMethod Call to method getDeliveryTag from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:173 PhanUndeclaredClassMethod Call to method isRedelivery from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:174 PhanUndeclaredClassMethod Call to method getExchangeName from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:175 PhanUndeclaredClassMethod Call to method getRoutingKey from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:176 PhanUndeclaredClassMethod Call to method getContentType from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:177 PhanUndeclaredClassMethod Call to method getContentEncoding from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:178 PhanUndeclaredClassMethod Call to method getHeaders from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:180 PhanUndeclaredClassMethod Call to method getPriority from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:181 PhanUndeclaredClassMethod Call to method getCorrelationId from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:182 PhanUndeclaredClassMethod Call to method getReplyTo from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:183 PhanUndeclaredClassMethod Call to method getExpiration from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:184 PhanUndeclaredClassMethod Call to method getMessageId from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:185 PhanUndeclaredClassMethod Call to method getTimeStamp from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:186 PhanUndeclaredClassMethod Call to method getType from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:187 PhanUndeclaredClassMethod Call to method getUserId from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/AmqpCaster.php:188 PhanUndeclaredClassMethod Call to method getAppId from undeclared class \AMQPEnvelope
src/Symfony/Component/VarDumper/Caster/ArgsStub.php:48 PhanTypeMismatchProperty Assigning array to property but \Symfony\Component\VarDumper\Caster\ArgsStub::value is string
src/Symfony/Component/VarDumper/Caster/ClassStub.php:47 PhanTypeMismatchArgumentInternal Argument 1 (haystack) is callable but \strpos() takes string
src/Symfony/Component/VarDumper/Caster/ClassStub.php:47 PhanTypeMismatchArgumentInternal Argument 1 (haystack) is callable|null but \strpos() takes string
src/Symfony/Component/VarDumper/Caster/ClassStub.php:48 PhanTypeMismatchArgumentInternal Argument 1 (str) is callable but \substr() takes string
src/Symfony/Component/VarDumper/Caster/ClassStub.php:48 PhanTypeMismatchArgumentInternal Argument 1 (str) is callable|null but \substr() takes string
src/Symfony/Component/VarDumper/Caster/ClassStub.php:82 PhanTypeMismatchArgument Argument 1 (identifier) is null but \Symfony\Component\VarDumper\Caster\ClassStub::__construct() takes string defined at src/Symfony/Component/VarDumper/Caster/ClassStub.php:27
src/Symfony/Component/VarDumper/Caster/CutStub.php:25 PhanTypeMismatchProperty Assigning \DOMNode to property but \Symfony\Component\VarDumper\Caster\CutStub::value is string
src/Symfony/Component/VarDumper/Caster/CutStub.php:30 PhanTypeMismatchArgumentInternal Argument 1 (object) is array but \get_class() takes object
src/Symfony/Component/VarDumper/Caster/CutStub.php:30 PhanTypeMismatchArgumentInternal Argument 1 (object) is string but \get_class() takes object
src/Symfony/Component/VarDumper/Caster/CutStub.php:37 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\VarDumper\Caster\CutStub::value is object
src/Symfony/Component/VarDumper/Caster/CutStub.php:37 PhanTypeMismatchProperty Assigning int to property but \Symfony\Component\VarDumper\Caster\CutStub::value is string
src/Symfony/Component/VarDumper/Caster/CutStub.php:53 PhanTypeMismatchArgumentInternal Argument 2 (subject) is \DOMNode but \preg_match() takes string
src/Symfony/Component/VarDumper/Caster/CutStub.php:53 PhanTypeMismatchArgumentInternal Argument 2 (subject) is array but \preg_match() takes string
src/Symfony/Component/VarDumper/Caster/CutStub.php:53 PhanTypeMismatchArgumentInternal Argument 2 (subject) is object but \preg_match() takes string
src/Symfony/Component/VarDumper/Caster/CutStub.php:54 PhanTypeMismatchArgumentInternal Argument 1 (string) is \DOMNode but \strlen() takes string
src/Symfony/Component/VarDumper/Caster/CutStub.php:54 PhanTypeMismatchArgumentInternal Argument 1 (string) is array but \strlen() takes string
src/Symfony/Component/VarDumper/Caster/CutStub.php:54 PhanTypeMismatchArgumentInternal Argument 1 (string) is object but \strlen() takes string
src/Symfony/Component/VarDumper/Caster/CutStub.php:55 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\VarDumper\Caster\CutStub::value is int
src/Symfony/Component/VarDumper/Caster/CutStub.php:55 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\VarDumper\Caster\CutStub::value is object
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:120 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->nodeName
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:121 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->nodeValue
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:122 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->nodeType
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:123 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->prefix
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:124 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->localName
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:125 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->namespaceURI
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:126 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->ownerDocument
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:127 PhanUndeclaredProperty Reference to undeclared property \DOMNameSpaceNode->parentNode
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:212 PhanUndeclaredProperty Reference to undeclared property \DOMTypeinfo->typeName
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:213 PhanUndeclaredProperty Reference to undeclared property \DOMTypeinfo->typeNamespace
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:222 PhanUndeclaredProperty Reference to undeclared property \DOMDomError->severity
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:223 PhanUndeclaredProperty Reference to undeclared property \DOMDomError->message
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:224 PhanUndeclaredProperty Reference to undeclared property \DOMDomError->type
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:225 PhanUndeclaredProperty Reference to undeclared property \DOMDomError->relatedException
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:226 PhanUndeclaredProperty Reference to undeclared property \DOMDomError->related_data
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:227 PhanUndeclaredProperty Reference to undeclared property \DOMDomError->location
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:236 PhanUndeclaredProperty Reference to undeclared property \DOMLocator->lineNumber
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:237 PhanUndeclaredProperty Reference to undeclared property \DOMLocator->columnNumber
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:238 PhanUndeclaredProperty Reference to undeclared property \DOMLocator->offset
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:239 PhanUndeclaredProperty Reference to undeclared property \DOMLocator->relatedNode
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:240 PhanUndeclaredProperty Reference to undeclared property \DOMLocator->lineNumber
src/Symfony/Component/VarDumper/Caster/DOMCaster.php:240 PhanUndeclaredProperty Reference to undeclared property \DOMLocator->uri
src/Symfony/Component/VarDumper/Caster/ExceptionCaster.php:264 PhanUndeclaredVariable Variable $c is undeclared
src/Symfony/Component/VarDumper/Caster/MongoCaster.php:23 PhanUndeclaredTypeParameter Parameter of undeclared type \MongoCursorInterface
src/Symfony/Component/VarDumper/Caster/MongoCaster.php:25 PhanUndeclaredClassMethod Call to method info from undeclared class \MongoCursorInterface
src/Symfony/Component/VarDumper/Caster/MongoCaster.php:30 PhanUndeclaredClassMethod Call to method dead from undeclared class \MongoCursorInterface
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:37 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_TRANSACTION_IDLE
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:38 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_TRANSACTION_ACTIVE
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:39 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_TRANSACTION_INTRANS
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:40 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_TRANSACTION_INERROR
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:41 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_TRANSACTION_UNKNOWN
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:45 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_EMPTY_QUERY
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:46 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_COMMAND_OK
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:47 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_TUPLES_OK
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:48 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_COPY_OUT
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:49 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_COPY_IN
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:50 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_BAD_RESPONSE
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:51 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_NONFATAL_ERROR
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:52 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_FATAL_ERROR
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:56 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_SEVERITY
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:57 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_SQLSTATE
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:58 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_MESSAGE_PRIMARY
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:59 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_MESSAGE_DETAIL
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:60 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_MESSAGE_HINT
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:61 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_STATEMENT_POSITION
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:62 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_INTERNAL_POSITION
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:63 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_INTERNAL_QUERY
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:64 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_CONTEXT
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:65 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_SOURCE_FILE
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:66 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_SOURCE_LINE
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:67 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_DIAG_SOURCE_FUNCTION
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:80 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_CONNECTION_OK
src/Symfony/Component/VarDumper/Caster/PgSqlCaster.php:116 PhanUndeclaredConstant Reference to undeclared constant \PGSQL_STATUS_STRING
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:24 PhanUndeclaredClassConstant Reference to constant SERIALIZER_NONE from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:25 PhanUndeclaredClassConstant Reference to constant SERIALIZER_PHP from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:29 PhanUndeclaredTypeParameter Parameter of undeclared type \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:42 PhanUndeclaredClassMethod Call to method isConnected from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:48 PhanUndeclaredClassConstant Reference to constant OPT_SERIALIZER from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:48 PhanUndeclaredClassMethod Call to method getOption from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:49 PhanUndeclaredClassConstant Reference to constant OPT_SCAN from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:49 PhanUndeclaredClassMethod Call to method getOption from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:53 PhanUndeclaredClassMethod Call to method getHost from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:54 PhanUndeclaredClassMethod Call to method getPort from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:55 PhanUndeclaredClassMethod Call to method getAuth from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:56 PhanUndeclaredClassMethod Call to method getDbNum from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:57 PhanUndeclaredClassMethod Call to method getTimeout from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:58 PhanUndeclaredClassMethod Call to method getPersistentID from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:60 PhanUndeclaredClassConstant Reference to constant OPT_READ_TIMEOUT from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:60 PhanUndeclaredClassMethod Call to method getOption from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:62 PhanUndeclaredClassConstant Reference to constant OPT_PREFIX from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:62 PhanUndeclaredClassMethod Call to method getOption from undeclared class \Redis
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:68 PhanUndeclaredTypeParameter Parameter of undeclared type \RedisArray
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:73 PhanUndeclaredClassMethod Call to method _hosts from undeclared class \RedisArray
src/Symfony/Component/VarDumper/Caster/RedisCaster.php:74 PhanUndeclaredClassMethod Call to method _function from undeclared class \RedisArray
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:107 PhanUndeclaredProperty Reference to undeclared property \ReflectionFunctionAbstract->class
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:108 PhanUndeclaredMethod Call to undeclared method \ReflectionFunctionAbstract::isStatic
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:108 PhanUndeclaredProperty Reference to undeclared property \ReflectionFunctionAbstract->class
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:317 PhanUndeclaredMethod Call to undeclared method \Reflector::getFileName
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:318 PhanUndeclaredMethod Call to undeclared method \Reflector::getStartLine
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:319 PhanUndeclaredMethod Call to undeclared method \Reflector::getEndLine
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:319 PhanUndeclaredMethod Call to undeclared method \Reflector::getStartLine
src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php:333 PhanUndeclaredProperty Reference to undeclared property \Reflector->name
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:47 PhanUndeclaredProperty Reference to undeclared property \XMLReader->localName
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:49 PhanUndeclaredProperty Reference to undeclared property \XMLReader->nodeType
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:51 PhanUndeclaredProperty Reference to undeclared property \XMLReader->isDefault
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:52 PhanUndeclaredProperty Reference to undeclared property \XMLReader->isEmptyElement
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:52 PhanUndeclaredProperty Reference to undeclared property \XMLReader->nodeType
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:53 PhanUndeclaredProperty Reference to undeclared property \XMLReader->xmlLang
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:54 PhanUndeclaredProperty Reference to undeclared property \XMLReader->attributeCount
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:56 PhanUndeclaredProperty Reference to undeclared property \XMLReader->namespaceURI
src/Symfony/Component/VarDumper/Caster/XmlReaderCaster.php:57 PhanUndeclaredProperty Reference to undeclared property \XMLReader->baseURI
src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php:270 PhanTypeMismatchArgument Argument 1 (obj) is null but \Symfony\Component\VarDumper\Caster\Caster::castObject() takes object defined at src/Symfony/Component/VarDumper/Caster/Caster.php:49
src/Symfony/Component/VarDumper/Cloner/Data.php:353 PhanTypeMismatchArgument Argument 2 (type) is string but \Symfony\Component\VarDumper\Cloner\DumperInterface::enterHash() takes int defined at src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:48
src/Symfony/Component/VarDumper/Cloner/Data.php:359 PhanTypeMismatchArgument Argument 2 (type) is string but \Symfony\Component\VarDumper\Cloner\DumperInterface::leaveHash() takes int defined at src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:59
src/Symfony/Component/VarDumper/Cloner/Data.php:366 PhanTypeMismatchArgument Argument 2 (type) is string but \Symfony\Component\VarDumper\Cloner\DumperInterface::enterHash() takes int defined at src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:48
src/Symfony/Component/VarDumper/Cloner/Data.php:366 PhanTypeMismatchArgument Argument 3 (class) is int but \Symfony\Component\VarDumper\Cloner\DumperInterface::enterHash() takes string defined at src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:48
src/Symfony/Component/VarDumper/Cloner/Data.php:367 PhanTypeMismatchArgument Argument 2 (type) is string but \Symfony\Component\VarDumper\Cloner\DumperInterface::leaveHash() takes int defined at src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:59
src/Symfony/Component/VarDumper/Cloner/Data.php:367 PhanTypeMismatchArgument Argument 3 (class) is int but \Symfony\Component\VarDumper\Cloner\DumperInterface::leaveHash() takes string defined at src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:59
src/Symfony/Component/VarDumper/Cloner/DumperInterface.php:28 PhanUndeclaredTypeParameter Parameter of undeclared type \Symfony\Component\VarDumper\Cloner\scalar
src/Symfony/Component/VarDumper/Cloner/VarCloner.php:40 PhanTypeMismatchArgumentInternal Argument 1 (prefix) is int but \uniqid() takes string
src/Symfony/Component/VarDumper/Cloner/VarCloner.php:75 PhanUndeclaredFunction Call to undeclared function \symfony_zval_info()
src/Symfony/Component/VarDumper/Cloner/VarCloner.php:105 PhanTypeMismatchProperty Assigning string to property but \Symfony\Component\VarDumper\Cloner\Stub::value is null
src/Symfony/Component/VarDumper/Cloner/VarCloner.php:161 PhanUndeclaredFunction Call to undeclared function \symfony_zval_info()
src/Symfony/Component/VarDumper/Dumper/AbstractDumper.php:53 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\VarDumper\Dumper\AbstractDumper::defaultOutput is string
src/Symfony/Component/VarDumper/Dumper/AbstractDumper.php:75 PhanTypeMismatchProperty Assigning callable|resource|string to property but \Symfony\Component\VarDumper\Dumper\AbstractDumper::outputStream is null
src/Symfony/Component/VarDumper/Dumper/CliDumper.php:132 PhanTypeMismatchArgumentInternal Argument 1 (val) is string but \is_nan() takes float
src/Symfony/Component/VarDumper/Dumper/CliDumper.php:333 PhanTypeMismatchArgument Argument 2 (value) is int but \Symfony\Component\VarDumper\Dumper\CliDumper::style() takes string defined at src/Symfony/Component/VarDumper/Dumper/CliDumper.php:394
src/Symfony/Component/VarDumper/Dumper/CliDumper.php:467 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_BUILD
src/Symfony/Component/VarDumper/Dumper/CliDumper.php:467 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_MAJOR
src/Symfony/Component/VarDumper/Dumper/CliDumper.php:467 PhanUndeclaredConstant Reference to undeclared constant \PHP_WINDOWS_VERSION_MINOR
src/Symfony/Component/VarDumper/Test/VarDumperTestTrait.php:24 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\VarDumper\Test\VarDumperTestTrait::assertSame
src/Symfony/Component/VarDumper/Test/VarDumperTestTrait.php:29 PhanUndeclaredMethod Call to undeclared method \Symfony\Component\VarDumper\Test\VarDumperTestTrait::assertStringMatchesFormat
src/Symfony/Component/VarDumper/VarDumper.php:44 PhanTypeMismatchProperty Assigning ?callable to property but \Symfony\Component\VarDumper\VarDumper::handler is callable
src/Symfony/Component/Workflow/DefinitionBuilder.php:56 PhanTypeMismatchProperty Assigning null to property but \Symfony\Component\Workflow\DefinitionBuilder::initialPlace is string
src/Symfony/Component/Yaml/Exception/ParseException.php:54 PhanTypeMismatchReturn Returning type ?string but getSnippet() is declared to return string
src/Symfony/Component/Yaml/Exception/ParseException.php:78 PhanTypeMismatchReturn Returning type ?string but getParsedFile() is declared to return string
src/Symfony/Component/Yaml/Inline.php:109 PhanTypeMismatchArgument Argument 3 (delimiters) is null but \Symfony\Component\Yaml\Inline::parseScalar() takes string[] defined at src/Symfony/Component/Yaml/Inline.php:299
src/Symfony/Component/Yaml/Inline.php:196 PhanTypeMismatchArgumentInternal Argument 2 (locale) is int but \setlocale() takes array
src/Symfony/Component/Yaml/Inline.php:305 PhanTypeComparisonToArray null to array comparison
src/Symfony/Component/Yaml/Parser.php:186 PhanTypeMismatchArgument Argument 1 (indentation) is null but \Symfony\Component\Yaml\Parser::getNextEmbedBlock() takes int defined at src/Symfony/Component/Yaml/Parser.php:481
src/Symfony/Component/Yaml/Parser.php:190 PhanTypeMismatchArgument Argument 1 (indentation) is null but \Symfony\Component\Yaml\Parser::getNextEmbedBlock() takes int defined at src/Symfony/Component/Yaml/Parser.php:481
src/Symfony/Component/Yaml/Parser.php:220 PhanTypeMismatchArgument Argument 1 (value) is null but \Symfony\Component\Yaml\Inline::parse() takes string defined at src/Symfony/Component/Yaml/Inline.php:47
src/Symfony/Component/Yaml/Parser.php:224 PhanTypeMismatchArgument Argument 3 (delimiters) is null but \Symfony\Component\Yaml\Inline::parseScalar() takes string[] defined at src/Symfony/Component/Yaml/Inline.php:299
src/Symfony/Component/Yaml/Parser.php:269 PhanTypeArraySuspicious Suspicious array access to \Symfony\Component\Yaml\Tag\TaggedValue|null
src/Symfony/Component/Yaml/Parser.php:481 PhanTypeMissingReturn Method \Symfony\Component\Yaml\Parser::getNextEmbedBlock is declared to return string but has no return value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment