Browse Source

Fixed a typo

Graham Campbell 10 years ago
parent
commit
0d08fcf281
1 changed files with 2 additions and 2 deletions
  1. 2 2
      bootstrap/autoload.php

+ 2 - 2
bootstrap/autoload.php

@@ -27,11 +27,11 @@ require __DIR__.'/../vendor/autoload.php';
 |
 */
 
-if (file_exists($compiledPath = __DIR__.'/../vendor/compiled.php';))
+if (file_exists($compiledPath = __DIR__.'/../vendor/compiled.php'))
 {
 	require $compiledPath;
 }
-elseif (file_exists($compiledPath = __DIR__.'/../storage/framework/compiled.php';))
+elseif (file_exists($compiledPath = __DIR__.'/../storage/framework/compiled.php'))
 {
 	require $compiledPath;
 }