opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
PEAR
/
Tests
/
Classes
➕ New
📤 Upload
✎ Editing:
ClassDeclarationUnitTest.1.inc
← Back
<?php // Correct declarations. class CorrectClassDeclaration { } abstract class CorrectClassDeclarationWithExtends extends correctClassDeclaration { } final class CorrectClassDeclarationWithImplements implements correctClassDeclaration { } // Incorrect placement of opening braces class IncorrectBracePlacement {} class IncorrectBracePlacementWithExtends extends correctClassDeclaration {} class IncorrectBracePlacementWithImplements implements correctClassDeclaration {} // Incorrect code placement for opening brace. class IncorrectCodeAfterOpeningBrace { echo phpinfo(); }//end class class IncorrectClassDeclarationWithExtends extends correctClassDeclaration { } class IncorrectBracePlacement { } abstract class CodeSnifferFail extends ArrayObject implements Serializable, Iterator, Countable, OuterIterator, RecursiveIterator { } abstract class CodeSnifferFail extends ArrayObject implements Serializable, Iterator, Countable, OuterIterator, RecursiveIterator { } namespace A { class B { } } $util->setLogger(new class {}); var_dump(new class(10) extends SomeClass implements SomeInterface { private $num; public function __construct($num) { $this->num = $num; } use SomeTrait; }); class IncorrectClassDeclarationWithCommentAtEnd extends correctClassDeclaration /* Comment */ { } class CorrectClassDeclarationWithCommentAtEnd extends correctClassDeclaration /* Comment */ { } // Don't move phpcs:ignore comments. class PHPCSIgnoreAnnotationAfterOpeningBrace { // phpcs:ignore Standard.Cat.Sniff -- for reasons. } // Moving any of the other trailing phpcs: comments is ok. class PHPCSAnnotationAfterOpeningBrace { // phpcs:disable Standard.Cat.Sniff -- for reasons. } if (!class_exists('ClassOpeningBraceShouldBeIndented')) { abstract class ClassOpeningBraceShouldBeIndented { } } if (!class_exists('ClassOpeningBraceTooMuchIndentation')) { final class ClassOpeningBraceTooMuchIndentation { } } enum IncorrectBracePlacement {}
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel