📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 01:28:27
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
CodeAnalysis
✏️
Editing: UselessOverridingMethodStandard.xml
<documentation title="Useless Overriding Method"> <standard> <![CDATA[ It is discouraged to override a method if the overriding method only calls the parent method. ]]> </standard> <code_comparison> <code title="Valid: A method that extends functionality of a parent method."> <![CDATA[ final class Foo extends Baz { public function bar() { parent::bar(); <em>$this->doSomethingElse();</em> } } ]]> </code> <code title="Invalid: An overriding method that only calls the parent method."> <![CDATA[ final class Foo extends Baz { public function bar() { <em>parent::bar();</em> } } ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel