PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
tests
/
Core
/
Tokenizers
/
Tokenizer
<?php function matchWithDefault($i) { return match ($i) { 1 => 1, 2 => 2, /* testSimpleMatchDefault */ default => 'default', }; } function switchWithDefault($i) { switch ($i) { case 1: return 1; case 2: return 2; /* testSimpleSwitchDefault */ default: return 'default'; } } function switchWithDefaultAndCurlies($i) { switch ($i) { case 1: return 1; case 2: return 2; /* testSimpleSwitchDefaultWithCurlies */ default: /* testSimpleSwitchDefaultWithCurliesScopeOpener */ { /* testSimpleSwitchDefaultWithCurliesConditionStop */ return 'default'; /* testSimpleSwitchDefaultWithCurliesScopeCloser */ } } } function matchWithDefaultInSwitch() { switch ($something) { case 'foo': $var = [1, 2, 3]; $var = match ($i) { 1 => 1, /* testMatchDefaultNestedInSwitchCase1 */ default => 'default', }; continue; case 'bar' : $i = callMe($a, $b); return match ($i) { 1 => 1, /* testMatchDefaultNestedInSwitchCase2 */ default => 'default', }; /* testSwitchDefault */ default; echo 'something', match ($i) { 1, => 1, /* testMatchDefaultNestedInSwitchDefault */ default, => 'default', }; /* testSwitchDefaultCloserMarker */ break; } } function switchWithDefaultInMatch() { $x = match ($y) { 5, 8 => function($z) { switch($z) { case 'a'; $var = [1, 2, 3]; return 'a'; /* testSwitchDefaultNestedInMatchCase */ default: $var = [1, 2, 3]; return 'default1'; } }, /* testMatchDefault */ default => function($z) { switch($z) { case 'a': $i = callMe($a, $b); return 'b'; /* testSwitchDefaultNestedInMatchDefault */ default: $i = callMe($a, $b); return 'default2'; } } }; } function switchAndDefaultSharingScopeCloser($i) { switch ($i): /* testSwitchAndDefaultSharingScopeCloser */ default: echo 'one'; /* testSwitchAndDefaultSharingScopeCloserScopeCloser */ endswitch; } function switchDefaultNestedIfWithAndWithoutBraces($i, $foo, $baz) { switch ($i) { /* testSwitchDefaultNestedIfWithAndWithoutBraces */ default: if ($foo) { return true; } elseif ($baz) return true; else { echo 'else'; } /* testSwitchDefaultNestedIfWithAndWithoutBracesScopeCloser */ break; } } function shortArrayWithConstantKey() { $arr = [ /* testClassConstantAsShortArrayKey */ SomeClass::DEFAULT => 1, /* testClassPropertyAsShortArrayKey */ SomeClass->DEFAULT => 1, /* testNamespacedConstantAsShortArrayKey */ // Intentional parse error PHP < 8.0. Reserved keyword used as namespaced constant. SomeNamespace\DEFAULT => 1, /* testFQNGlobalConstantAsShortArrayKey */ // Intentional parse error in PHP < 8.0. Reserved keyword used as global constant. \DEFAULT => 1, ]; } function longArrayWithConstantKey() { $arr = array( /* testClassConstantAsLongArrayKey */ SomeClass::DEFAULT => 1, ); } function yieldWithConstantKey() { /* testClassConstantAsYieldKey */ yield SomeClass::DEFAULT => 1; } function longArrayWithConstantKeyNestedInMatch() { return match($x) { /* testMatchDefaultWithNestedLongArrayWithClassConstantKey */ DEFAULT => array( /* testClassConstantAsLongArrayKeyNestedInMatch */ SomeClass::DEFAULT => match($x) { /* testMatchDefaultWithNestedLongArrayWithClassConstantKeyLevelDown */ DEFAULT => array( /* testClassConstantAsLongArrayKeyNestedInMatchLevelDown */ SomeClass::DEFAULT => 1, ), }, ), }; } function shortArrayWithConstantKeyNestedInMatch() { return match($x) { /* testMatchDefaultWithNestedShortArrayWithClassConstantKey */ DEFAULT => [ /* testClassConstantAsShortArrayKeyNestedInMatch */ SomeClass::DEFAULT => match($x) { /* testMatchDefaultWithNestedShortArrayWithClassConstantKeyLevelDown */ DEFAULT => [ /* testClassConstantAsShortArrayKeyNestedInMatchLevelDown */ SomeClass::DEFAULT => 1, ], }, ], }; } function longArrayWithConstantKeyWithNestedMatch() { return array( /* testClassConstantAsLongArrayKeyWithNestedMatch */ SomeClass::DEFAULT => match($x) { /* testMatchDefaultNestedInLongArray */ DEFAULT => 'foo' }, ); } function shortArrayWithConstantKeyWithNestedMatch() { return [ /* testClassConstantAsShortArrayKeyWithNestedMatch */ SomeClass::DEFAULT => match($x) { /* testMatchDefaultNestedInShortArray */ DEFAULT => 'foo' }, ]; } function switchWithConstantNonDefault($i) { switch ($i) { /* testClassConstantInSwitchCase */ case SomeClass::DEFAULT: return 1; /* testClassPropertyInSwitchCase */ case SomeClass->DEFAULT: return 2; /* testNamespacedConstantInSwitchCase */ // Intentional parse error PHP < 8.0. Reserved keyword used as constant. case SomeNamespace\DEFAULT: return 2; /* testNamespaceRelativeConstantInSwitchCase */ // Intentional parse error PHP < 8.0. Reserved keyword used as global constant. case namespace\DEFAULT: return 2; } } class Foo { /* testClassConstant */ const DEFAULT = 'foo'; /* testMethodDeclaration */ public function default() {} }
[-] ReplaceTabsInTokenTabWidth4Test.php
[edit]
[-] ReplaceTabsInTokenTabWidth5Test.php
[edit]
[-] CreateParenthesisNestingMapDNFTypesTest.inc
[edit]
[-] CreatePositionMapHeredocNowdocCloserTest.php
[edit]
[+]
..
[-] ReplaceTabsInTokenTest.inc
[edit]
[-] CreateTokenMapArrayParenthesesTest.inc
[edit]
[-] CreateParenthesisNestingMapDNFTypesTest.php
[edit]
[-] RecurseScopeMapDefaultKeywordConditionsTest.inc
[edit]
[-] RecurseScopeMapWithNamespaceOperatorTest.inc
[edit]
[-] CreatePositionMapHeredocNowdocOpenerTest.php
[edit]
[-] RecurseScopeMapIfKeywordConditionsTest.php
[edit]
[-] ReplaceTabsInTokenTabWidth2Test.php
[edit]
[-] CreatePositionMapTabWidth0Test.php
[edit]
[-] CreatePositionMapHeredocNowdocCloserTest.inc
[edit]
[-] RecurseScopeMapDefaultKeywordConditionsTest.php
[edit]
[-] CreatePositionMapHeredocNowdocOpenerTest.inc
[edit]
[-] RecurseScopeMapSwitchTokenScopeTest.inc
[edit]
[-] RecurseScopeMapCaseKeywordConditionsTest.inc
[edit]
[-] CreatePositionMapYieldFromTest.inc
[edit]
[-] CreateTokenMapArrayParenthesesTest.php
[edit]
[-] RecurseScopeMapCaseKeywordConditionsTest.php
[edit]
[-] CreatePositionMapYieldFromTest.php
[edit]
[-] ReplaceTabsInTokenTestCase.php
[edit]
[-] RecurseScopeMapSwitchTokenScopeTest.php
[edit]
[-] RecurseScopeMapWithNamespaceOperatorTest.php
[edit]
[-] ReplaceTabsInTokenMiscTest.php
[edit]
[-] RecurseScopeMapIfKeywordConditionsTest.inc
[edit]
[-] ReplaceTabsInTokenTabWidth1Test.php
[edit]