PHPStan\Broker\ClassNotFoundException::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string $functionName )
$functionName string
    public function __construct(string $functionName)
    {
        parent::__construct(sprintf('Class %s was not found while trying to analyse it - autoloading is not probably configured properly.', $functionName));
        $this->className = $functionName;
    }
ClassNotFoundException