You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding macro/mixin methods added to a class like Illuminate\Console\Command, the helper code will contain definitions of both a static and non-static version of the method. But the static version doesn't make any sense for a command, and I have an inspection that complains that $this->theMacro() should be changed to self::theMacro().
Is it possible to tell laravel-idea that it shouldn't define a static version of a macro? If not, could it be added?
The text was updated successfully, but these errors were encountered:
Feature Description
When adding macro/mixin methods added to a class like
Illuminate\Console\Command
, the helper code will contain definitions of both a static and non-static version of the method. But the static version doesn't make any sense for a command, and I have an inspection that complains that$this->theMacro()
should be changed toself::theMacro()
.Is it possible to tell laravel-idea that it shouldn't define a static version of a macro? If not, could it be added?
The text was updated successfully, but these errors were encountered: