Преглед на файлове

[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;
         }