소스 검색

[Console] fixed call to undefined method.

fivestar 14 년 전
부모
커밋
ac3e5545b9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Component/Console/Shell.php

+ 1 - 1
src/Symfony/Component/Console/Shell.php

@@ -102,7 +102,7 @@ class Shell
 
         // options and arguments?
         try {
-            $command = $this->application->findCommand(substr($text, 0, strpos($text, ' ')));
+            $command = $this->application->find(substr($text, 0, strpos($text, ' ')));
         } catch (\Exception $e) {
             return true;
         }