PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/AbstractClassNamePrefixStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/AbstractClassNamePrefixStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/AbstractClassNamePrefixStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 27 days ago
Size: 540 bytes
 

Contents

Class file image Download
<documentation title="Abstract class name"> <standard> <![CDATA[ Abstract class names must be prefixed with "Abstract", e.g. AbstractBar. ]]> </standard> <code_comparison> <code title="Valid: Class name starts with 'Abstract'."> <![CDATA[ abstract class <em>AbstractBar</em> { } ]]> </code> <code title="Invalid: Class name does not start with 'Abstract'."> <![CDATA[ abstract class <em>Bar</em> { } ]]> </code> </code_comparison> </documentation>