Feature Description
All my controller actions have a $request parameter with a type specific to that controller action. They contain authorization information so Laravel uses them behind the scenes. However, PhpStorm is complaining all the timeUnused parameter 'request'. The parameter's value is not used anywhere..
Would it be possible for Laravel Idea to trick PhpStorm into believing the parameter is actually used if it's in a controller action?
Feature Description
All my controller actions have a
$requestparameter with a type specific to that controller action. They contain authorization information so Laravel uses them behind the scenes. However, PhpStorm is complaining all the timeUnused parameter 'request'. The parameter's value is not used anywhere..Would it be possible for Laravel Idea to trick PhpStorm into believing the parameter is actually used if it's in a controller action?