PHP Classes

File: vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/DisallowAnonClassParenthesesStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/DisallowAnonClassParenthesesStandard.xml   Download  
File: vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/DisallowAnonClassParenthesesStandard.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: 804 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="Disallow Anonymous Class Parentheses" > <standard> <![CDATA[ Disallows the use of parentheses when declaring an anonymous class without passing parameters. ]]> </standard> <code_comparison> <code title="Valid: Anonymous class without parentheses or with parameters."> <![CDATA[ $anon = new class<em></em> {}; $anon = new class<em>($param)</em> {}; ]]> </code> <code title="Invalid: Anonymous class with parentheses."> <![CDATA[ $anon = new class<em>()</em> {}; ]]> </code> </code_comparison> </documentation>