PHP Classes

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

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   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: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
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>