PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UselessOverridingMethodStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UselessOverridingMethodStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UselessOverridingMethodStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: Yesterday
Size: 707 bytes
 

Contents

Class file image Download
<documentation title="Useless Overriding Methods"> <standard> <![CDATA[ Methods should not be defined that only call the parent method. ]]> </standard> <code_comparison> <code title="Valid: A method that extends functionality on a parent method."> <![CDATA[ final class Foo { public function bar() { parent::bar(); <em>$this->doSomethingElse();</em> } } ]]> </code> <code title="Invalid: An overriding method that only calls the parent."> <![CDATA[ final class Foo { public function bar() { <em>parent::bar();</em> } } ]]> </code> </code_comparison> </documentation>