php-parser/lib/bootstrap.php
Nikita Popov c7ada124d0 [CS] Use ::class notation instead of string
Conflicts:
	test/PhpParser/ParserFactoryTest.php
	test/PhpParser/ParserTest.php
2018-01-13 16:08:17 +01:00

7 lines
169 B
PHP

<?php declare(strict_types=1);
if (!class_exists(PhpParser\Autoloader::class)) {
require __DIR__ . '/PhpParser/Autoloader.php';
}
PhpParser\Autoloader::register();