We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aa9a9f commit 950821aCopy full SHA for 950821a
phpdoccheck
@@ -8,7 +8,12 @@
8
* @link http://www.phptesting.org/
9
*/
10
11
-require_once(dirname(__FILE__) . '/vendor/autoload.php');
+$autoloader = dirname(__FILE__) . '/vendor/autoload.php';
12
+
13
+if (file_exists($autoloader)) {
14
+ require_once($autoloader);
15
+}
16
17
require_once(dirname(__FILE__) . '/PhpDocblockChecker/CheckerApplication.php');
18
require_once(dirname(__FILE__) . '/PhpDocblockChecker/CheckerCommand.php');
19
0 commit comments