PHPStan\Reflection\MissingPropertyFromReflectionException::__construct PHP Method

__construct() public method

public __construct ( string $className, string $propertyName )
$className string
$propertyName string
    public function __construct(string $className, string $propertyName)
    {
        parent::__construct(sprintf('Property $%s was not found in reflection of class %s - probably the wrong version of class is autoloaded.', $propertyName, $className));
    }
MissingPropertyFromReflectionException