opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Tests
/
Functions
➕ New
📤 Upload
✎ Editing:
OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed
← Back
<?php // Brace should be on new line. function myFunction() { } // Good. function myFunction() { } // Too many spaces. function myFunction() { } // Too many newlines. function myFunction() { } // Space before brace. function myFunction() { } class myClass { // Brace should be on new line. function myFunction() { } // Good. function myFunction() { } // No aligned correctly. function myFunction() { } // Too many spaces. function myFunction() { } // Too many newlines. function myFunction() { } // Space before brace. function myFunction() { } } /* Multi-line declarations */ // Brace should be on new line. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Good. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Too many spaces. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Too many newlines. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Space before brace. function myFunction($variable1, $variable2, $variable3, $variable4) { } class myClass { // Brace should be on new line. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Good. function myFunction($variable1, $variable2, $variable3, $variable4) { } // No aligned correctly. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Too many spaces. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Too many newlines. function myFunction($variable1, $variable2, $variable3, $variable4) { } // Space before brace. function myFunction($variable1, $variable2, $variable3, $variable4) { } } interface MyInterface { function myFunction(); } function myFunction( $arg1, $arg2, $arg3, $arg4, $arg5, $arg6 ) { } function myFunction( $arg1, $arg2, $arg3, $arg4, $arg5, $arg6 ) { } function myFunction() {} function myFunction() {} // phpcs:set Generic.Functions.OpeningFunctionBraceBsdAllman checkClosures 1 $closureWithArgs = function ($arg1, $arg2) { // body }; $closureWithArgsAndVars = function ($arg1, $arg2) use ($var1, $var2) { // body }; $test = function ($param) use ($result) { return null; }; $test = function ($param) use ($result) : Something { return null; }; // phpcs:set Generic.Functions.OpeningFunctionBraceBsdAllman checkClosures 0 $closureWithArgs = function ($arg1, $arg2) { // body }; class Foo { //Comments should not affect code public function bar() { } //Comments should not affect code } function myFunction() : Something { return null; } function myFunction($a, $lot, $of, $params) : array { return null; } function myFunction($a, $lot, $of, $params) { // comment return null; } function myFunction($a, $lot, $of, $params) : array { // comment return null; } function myFunction($a, $lot, $of, $params) : array // phpcs:ignore Standard.Category.Sniff -- for reasons. { return null; } function myFunction($a, $lot, $of, $params) : array // phpcs:ignore Standard.Category.Sniff -- for reasons. { return null; } function myFunction($a, $lot, $of, $params) : array { // phpcs:ignore Standard.Category.Sniff -- for reasons. return null; } function myFunction($a, $lot, $of, $params) : array /* phpcs:ignore Standard.Category.Sniff -- for reasons */ { return null; } function myFunction($a, $lot, $of, $params) : array /* comment */ { return null; } class Issue3357 { public function extraLine(string: $a): void { // code here. } } function issue3357WithoutIndent(string: $a): void { // code here. } class Issue3357WithComment { public function extraLine(string: $a): void // Comment. { // code here. } } function myFunction() {} function myFunction() {} // Too many spaces indent with an empty function. function myFunction() {} // Too little spaces indent with an empty function.
💾 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