Browse Source

use is_callable instead of method_exists.

Taylor Otwell 13 years ago
parent
commit
2713ee9b87
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cli/command.php

+ 1 - 1
laravel/cli/command.php

@@ -42,7 +42,7 @@ class Command {
 			throw new \Exception("Sorry, I can't find that task.");
 		}
 
-		if(method_exists($task, $method) or method_exists($task, '__call'))
+		if(is_callable(array($task, $method)))
 		{
 			$task->$method(array_slice($arguments, 1));
 		}