SensioLabs\DeprecationDetector\Finder\Result::parserErrors PHP Метод

parserErrors() публичный Метод

public parserErrors ( )
    public function parserErrors()
    {
        return $this->errors;
    }

Usage Example

 public function testParserErrors()
 {
     $parserErrors = array($this->prophesize('SensioLabs\\DeprecationDetector\\FileInfo\\PhpFileInfo'));
     $result = new Result(array(), $parserErrors, 10);
     $this->assertSame($parserErrors, $result->parserErrors());
 }