It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
The doc-type array[string]string could not be parsed: Expected "]" at position 2, but found "string". (view supported doc-types)
This check marks PHPDoc comments that could not be parsed by our parser. To see
which comment annotations we can parse, please refer to our documentation on
supported doc-types.
Loading history...
73
* @return Generator
74
**/
75
protected function createGenerator(array $parameters = array())
76
{
77
return new Generator($this->getRootDir(), $parameters);
78
}
79
80
/**
81
* Get the tests directory root path
82
*
83
* @return string
84
**/
85
protected function getTestsRoot()
86
{
87
return realpath(__DIR__ . '/../../../../');
88
}
89
90
/**
91
* Delete a directory
92
*
93
* @param string $dir
94
* @return void
95
**/
96
private static function deleteDir($dir)
97
{
98
$iterator = new RecursiveIteratorIterator(
99
new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS),
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.