‪TYPO3CMS  11.5
ConstructorArgumentMatcherFixture.php
Go to the documentation of this file.
1 <?php
2 
3 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 
19 
21 
26 {
27  public function ‪__construct(string $value)
28  {
29  parent::__construct($value);
30  }
31 
32  public function ‪invocations(): void
33  {
34  $a = new ‪Subject('a', 'b', 'c');
35  $b = new \TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\Subject('a', 'b', 'c');
36  $c = GeneralUtility::makeInstance(Subject::class, 'a', 'b', 'c');
37  $d = GeneralUtility::makeInstance(\‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\Subject::class, 'a', 'b', 'c');
38  $className = Subject::class;
39  $e = new $className('a', 'b', 'c');
40  }
41 
42  public function ‪unused(): void
43  {
44  $a = new ‪Subject('a', null, 'c');
45  $c = GeneralUtility::makeInstance(Subject::class, 'a', null, 'c');
46  }
47 }
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\ConstructorArgumentMatcherFixture
Definition: ConstructorArgumentMatcherFixture.php:26
‪TYPO3
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures
Definition: ArrayDimensionMatcherFixture.php:18
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\ConstructorArgumentMatcherFixture\invocations
‪invocations()
Definition: ConstructorArgumentMatcherFixture.php:32
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\Subject
Definition: Subject.php:24
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:50
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\ConstructorArgumentMatcherFixture\unused
‪unused()
Definition: ConstructorArgumentMatcherFixture.php:42
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\Fixtures\ConstructorArgumentMatcherFixture\__construct
‪__construct(string $value)
Definition: ConstructorArgumentMatcherFixture.php:27