We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d76ef2c commit b88f507Copy full SHA for b88f507
bin/pluginmap_generator.php
@@ -40,13 +40,13 @@
40
$libPath = getenv('LIB_PATH') ? getenv('LIB_PATH') : __DIR__ . '/../library';
41
if (!is_dir($libPath)) {
42
// Try to load StandardAutoloader from include_path
43
- if (false === include ('Zend/Loader/StandardAutoloader.php')) {
+ if (false === (include 'Zend/Loader/StandardAutoloader.php')) {
44
echo "Unable to locate autoloader via include_path; aborting" . PHP_EOL;
45
exit(2);
46
}
47
} else {
48
// Try to load StandardAutoloader from library
49
- if (false === include ($libPath . '/Zend/Loader/StandardAutoloader.php')) {
+ if (false === (include $libPath . '/Zend/Loader/StandardAutoloader.php')) {
50
echo "Unable to locate autoloader via library; aborting" . PHP_EOL;
51
52
0 commit comments