PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   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: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: 2 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>