📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 10:46:38
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
CodeAnalysis
📍 /opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis
🔄 Refresh
✏️
Editing: UselessOverridingMethodStandard.xml
Read Only
<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