PHP Classes

File: vendor/phpcsstandards/phpcsextra/Universal/Docs/OOStructures/AlphabeticExtendsImplementsStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/phpcsstandards/phpcsextra/Universal/Docs/OOStructures/AlphabeticExtendsImplementsStandard.xml   Download  
File: vendor/phpcsstandards/phpcsextra/Universal/Docs/OOStructures/AlphabeticExtendsImplementsStandard.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: 766 bytes
 

Contents

Class file image Download
<?xml version="1.0"?> <documentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://phpcsstandards.github.io/PHPCSDevTools/phpcsdocs.xsd" title="Alphabetic Extends Implements" > <standard> <![CDATA[ The names used in class "implements" or interface "extends" statements should be listed in alphabetic order. ]]> </standard> <code_comparison> <code title="Valid: Names listed alphabetically."> <![CDATA[ class Baz implements <em>Bar, Foo</em> { } ]]> </code> <code title="Invalid: Names not listed alphabetically."> <![CDATA[ class Baz implements <em>Foo, Bar</em> { } ]]> </code> </code_comparison> </documentation>