소스 검색

chache to return (file_exists() && include );

Marcin Chyłek 13 년 전
부모
커밋
0e0b5ac222
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      bin/compile
  2. 1 1
      bin/composer

+ 1 - 1
bin/compile

@@ -2,7 +2,7 @@
 <?php
 
 function autoload($file) {
-    return (file_exists($file) && include $file) ? true : false;
+    return (file_exists($file) && include $file);
 }
 
 if (!autoload(__DIR__.'/../../../.composer/autoload.php') && !autoload(__DIR__.'/../vendor/.composer/autoload.php')) {

+ 1 - 1
bin/composer

@@ -2,7 +2,7 @@
 <?php
 
 function autoload($file) {
-    return (file_exists($file) && include $file) ? true : false;
+    return (file_exists($file) && include $file);
 }
 
 if (!autoload(__DIR__.'/../../../.composer/autoload.php') && !autoload(__DIR__.'/../vendor/.composer/autoload.php')) {