Created
July 24, 2013 18:40
-
-
Save Spechal/6073252 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Route::controller('login', 'LoginController'); | |
| Route::post('login', array('before' => 'csrf', 'LoginController@postIndex')); | |
| Error: | |
| call_user_func_array() expects parameter 1 to be a valid callback, no array or string given | |
| open: /laravel/bootstrap/compiled.php | |
| $this->callAfterFilters($request, $response); | |
| } | |
| return $response; | |
| } | |
| protected function callCallable() | |
| { | |
| $variables = array_values($this->getParametersWithoutDefaults()); | |
| return call_user_func_array($this->getOption('_call'), $variables); ### error is on this line | |
| } | |
| protected function callBeforeFilters(Request $request) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment