The doc-type class-string could not be parsed: Unknown type name "class-string" at position 0. (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...
22
*/
23
public function __construct(string $class, string $path)
24
{
25
$this->class = $class;
26
$this->path = $path;
27
}
28
29
public function require(): bool
30
{
31
if (is_file($this->path) && ! class_exists($this->path, false)) {
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.