Skip to content

Commit b88f507

Browse files
committed
Ralph feedback
1 parent d76ef2c commit b88f507

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/pluginmap_generator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
$libPath = getenv('LIB_PATH') ? getenv('LIB_PATH') : __DIR__ . '/../library';
4141
if (!is_dir($libPath)) {
4242
// Try to load StandardAutoloader from include_path
43-
if (false === include ('Zend/Loader/StandardAutoloader.php')) {
43+
if (false === (include 'Zend/Loader/StandardAutoloader.php')) {
4444
echo "Unable to locate autoloader via include_path; aborting" . PHP_EOL;
4545
exit(2);
4646
}
4747
} else {
4848
// Try to load StandardAutoloader from library
49-
if (false === include ($libPath . '/Zend/Loader/StandardAutoloader.php')) {
49+
if (false === (include $libPath . '/Zend/Loader/StandardAutoloader.php')) {
5050
echo "Unable to locate autoloader via library; aborting" . PHP_EOL;
5151
exit(2);
5252
}

0 commit comments

Comments
 (0)