Code Inspection: Method can be made 'static'
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
Reports the methods that don't use any instance references and thus may be converted to static methods.
Static methods normally belong to utility classes and are accessed in the context of a class rather than an object. In the following example, the foo
method does not use any instance references, and can therefore be declared as static
.
Before
class A { public function foo() { return true; } public function bar() { echo $this->foo(); }}$a = new A;$a->foo();
After
class A { public static function foo() { return true; } public function bar() { echo A::foo(); }}$a = new A;A::foo();
Place the caret at the highlighted line and press AltEnter or click
.
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.