PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 942 bytes
 

Contents

Class file image Download
<?php while ($expr) { } if ( ) { } while ( $expr1 && $expr2 ) { } while ( $expr1 && $expr2 ) { } do { } while ( $expr1 && $expr2 ) { } if ( $expr1 && $expr2 && $expr3 ) { while ( $expr1 && $expr2 ) { } while ( $expr1 && $expr2 ) { } } while ( $expr1 && $expr2 ) { } while ( $expr1 && $expr2 // comment here ) { } for ( $i = 0; $i < 10; $i++; ) { } if ( foo( 'this is a string', <<<EOD foobar! EOD ) ) { return; } if ( isset($foo) === true && $bar > $foo /* * A multi-line comment. */ && $foo === true ) { break; } match ( $expr1 && $expr2 && $expr3 ) { // structure body }; match ( $expr1 && $expr2 && $expr3 ) { // structure body };