@@ -2,12 +2,12 @@ |
||
2 | 2 | |
3 | 3 | /* Find bootstrap path */ |
4 | 4 | $rootPath = realpath(dirname(__FILE__)); |
5 | -while (!file_exists($rootPath . '/app/bootstrap.php') && $rootPath !== '/') { |
|
5 | +while (!file_exists($rootPath.'/app/bootstrap.php') && $rootPath !== '/') { |
|
6 | 6 | $rootPath = realpath(dirname($rootPath)); |
7 | 7 | } |
8 | 8 | |
9 | 9 | /* Include Magento bootstrap file */ |
10 | -require_once $rootPath . '/app/bootstrap.php'; |
|
10 | +require_once $rootPath.'/app/bootstrap.php'; |
|
11 | 11 | |
12 | 12 | /* Create git hook class autoloader */ |
13 | 13 | $_git_hook_loaded_class = []; |