I have 2 controller functions which call a static function of a class located right under app folder.
Controllers\UserResController.php
public function show($id, Request $request)
{
return \App\User::show($id, $request);
}
Conrtollers\Other\UserResController.php
public function show($id, Request $request)
{
// other codes
return \App\User::show($id, $request);
}
app\User.php
public static function show($id, Request $request){
//codes
}
What surprised me is that these code run OK in development and staging environment but not in production.
It throws exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Call to undefined method App\User::show()'
What causes it? Thanks.