We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d18a37a commit add7ee0Copy full SHA for add7ee0
src/Illuminate/Foundation/Artisan.php
@@ -70,4 +70,16 @@ protected function getArtisan()
70
return $this->artisan = ConsoleApplication::start($this->app);
71
}
72
73
+ /**
74
+ * Dynamically pass all missing methods to console Artisan.
75
+ *
76
+ * @param string $method
77
+ * @param array $parameters
78
+ * @return mixed
79
+ */
80
+ public function __call($method, $parameters)
81
+ {
82
+ return call_user_func_array(array($this->getArtisan(), $method), $parameters);
83
+ }
84
+
85
0 commit comments