‪TYPO3CMS  9.5
PropertyExistsStaticMatcherFixture.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
22 {
23  protected static ‪$iAmAMatch = 42;
24 
25  protected static ‪$iAmNotAMatch;
26 
27  public static ‪$iAmNotAMatchEither;
28 
29  private static ‪$iAmNoMatchToo;
30 }
31 
33 {
34  public static ‪$iAmAMatch;
35 }
36 
38 {
39  // Not a match: private
40  private static ‪$iAmAMatch;
41 }
42 
44 {
45  // Not a match: suppressed
46  // @extensionScannerIgnoreLine
47  public static ‪$iAmAMatch;
48 }
49 
51 {
58  public static ‪$iAmAMatch;
59 }
60 
62 {
63  // Not a match: Not static
64  public ‪$iAmAMatch;
65 }
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture4\$iAmAMatch
‪static $iAmAMatch
Definition: PropertyExistsStaticMatcherFixture.php:47
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture2
Definition: PropertyExistsStaticMatcherFixture.php:33
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture5\$iAmAMatch
‪static string null $iAmAMatch
Definition: PropertyExistsStaticMatcherFixture.php:57
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures
Definition: ArrayDimensionMatcherFixture.php:3
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture3
Definition: PropertyExistsStaticMatcherFixture.php:38
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture2\$iAmAMatch
‪static $iAmAMatch
Definition: PropertyExistsStaticMatcherFixture.php:34
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture1\$iAmNotAMatch
‪static $iAmNotAMatch
Definition: PropertyExistsStaticMatcherFixture.php:25
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture1\$iAmAMatch
‪static $iAmAMatch
Definition: PropertyExistsStaticMatcherFixture.php:23
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture6
Definition: PropertyExistsStaticMatcherFixture.php:61
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture5
Definition: PropertyExistsStaticMatcherFixture.php:51
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture1\$iAmNoMatchToo
‪static $iAmNoMatchToo
Definition: PropertyExistsStaticMatcherFixture.php:29
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture3\$iAmAMatch
‪static $iAmAMatch
Definition: PropertyExistsStaticMatcherFixture.php:40
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture1\$iAmNotAMatchEither
‪static $iAmNotAMatchEither
Definition: PropertyExistsStaticMatcherFixture.php:27
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture6\$iAmAMatch
‪$iAmAMatch
Definition: PropertyExistsStaticMatcherFixture.php:63
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture4
Definition: PropertyExistsStaticMatcherFixture.php:44
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\PropertyExistsStaticMatcherFixture1
Definition: PropertyExistsStaticMatcherFixture.php:22